Skip to content

Commit

Permalink
adjust position for snaptap
Browse files Browse the repository at this point in the history
  • Loading branch information
yulei committed Jul 31, 2024
1 parent b68b975 commit e164bb6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/python/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,8 @@ def __init__(self, appctx):
(self.rgb_configurator, "Lighting"), (self.tap_dance, "Tap Dance"), (self.combos, "Combos"),
(self.key_override, "Key Overrides"), (self.qmk_settings, "QMK Settings"),
(self.matrix_tester, "Matrix tester"), (self.firmware_flasher, "Firmware updater"),
(self.apc_rt, "APC/RT Settings"), (self.dks, "DKS Settings"), (self.misc, "Misc settings"),
(self.rgb_strip, "RGB Led Strips"), (self.animation, "Animations"), (self.rgb_matrix, "RGB Matrix"),
(self.snaptap, "Snap Tap Settings")]
(self.apc_rt, "APC/RT Settings"), (self.dks, "DKS Settings"), (self.snaptap, "Snap Tap Settings"), (self.misc, "Misc settings"),
(self.rgb_strip, "RGB Led Strips"), (self.animation, "Animations"), (self.rgb_matrix, "RGB Matrix")]

Unlocker.global_layout_editor = self.layout_editor
Unlocker.global_main_window = self
Expand Down Expand Up @@ -329,7 +328,8 @@ def rebuild(self):
for e in [self.layout_editor, self.keymap_editor, self.firmware_flasher, self.macro_recorder,
self.tap_dance, self.combos, self.key_override, self.qmk_settings, self.matrix_tester,
self.rgb_configurator,
self.apc_rt, self.dks, self.misc, self.rgb_strip, self.animation, self.rgb_matrix, self.snaptap]:
self.apc_rt, self.dks, self.snaptap, self.misc,
self.rgb_strip, self.animation, self.rgb_matrix]:
e.rebuild(self.autorefresh.current_device)

def refresh_tabs(self):
Expand Down

0 comments on commit e164bb6

Please sign in to comment.