mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Fix wrong comparison
This commit is contained in:
parent
270fe5bef9
commit
d44deb32c8
1 changed files with 2 additions and 1 deletions
|
|
@ -177,7 +177,8 @@ app.on('ready', () => installDevExtensions(isDev).then(() => {
|
|||
win.webContents.send('config change');
|
||||
|
||||
// notify user that shell changes require new sessions
|
||||
if (cfg_.shell !== cfg.shell || cfg_.shellArgs !== cfg.shellArgs) {
|
||||
if (cfg_.shell !== cfg.shell ||
|
||||
JSON.stringify(cfg_.shellArgs) !== JSON.stringify(cfg.shellArgs)) {
|
||||
notify(
|
||||
'Shell configuration changed!',
|
||||
'Open a new tab or window to start using the new shell'
|
||||
|
|
|
|||
Loading…
Reference in a new issue