Skip to content

Commit

Permalink
Fix Natlink GUI arrow extras_state logic
Browse files Browse the repository at this point in the history
  • Loading branch information
LexiconCode committed Oct 28, 2022
1 parent a98dbde commit 2d92364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/natlinkcore/configure/natlinkconfig_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ def AhkUserDir(values, event):
window['unimacro'].update(visible=unimacro_state)

elif event.startswith('extras'):
extras_state = not extras_state
window['extras-symbol-open'].update(SYMBOL_DOWN if extras_state else SYMBOL_UP)
extras_state = not extras_state
window['extras'].update(visible=extras_state)

# Wait for threaded perform_long_operation to complete
Expand Down

0 comments on commit 2d92364

Please sign in to comment.