Skip to content

Commit

Permalink
[bug 827] fix --new-tab and --toggle-visibility
Browse files Browse the repository at this point in the history
Commit 2e1dd1f add a 'if' between a 'if' and 'else' breaking logic.
  • Loading branch information
j-d-r committed Sep 18, 2023
1 parent a6a0eca commit b935eda
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions terminator
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b935eda

Please sign in to comment.