From b935eda987d2ae4bce0b412884b9d574f2021e29 Mon Sep 17 00:00:00 2001 From: Julien Dusser Date: Sun, 10 Sep 2023 17:02:38 +0200 Subject: [PATCH] [bug 827] fix --new-tab and --toggle-visibility Commit 2e1dd1f add a 'if' between a 'if' and 'else' breaking logic. --- terminator | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/terminator b/terminator index 21eaec7d..4603b5b0 100755 --- a/terminator +++ b/terminator @@ -111,11 +111,9 @@ if __name__ == '__main__': elif OPTIONS.toggle_visibility: dbg('requesting to toggle windows visibility') ipc.toggle_visibility_cmdline(optionslist) - - if OPTIONS.reload: + elif OPTIONS.reload: dbg('requesting to reload configuration for all windows') ipc.reload_configuration() - elif OPTIONS.unhide: print('requesting to unhide windows') ipc.unhide_cmdline(optionslist)