From 841ec5678c8df071251c15943a19badba4ccec16 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Sat, 22 May 2021 12:26:17 -0400 Subject: [PATCH] main_window: move rgb before matrix test --- src/main/python/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/python/main_window.py b/src/main/python/main_window.py index 57b409f..f44f34f 100644 --- a/src/main/python/main_window.py +++ b/src/main/python/main_window.py @@ -58,7 +58,7 @@ class MainWindow(QMainWindow): self.rgb_configurator = RGBConfigurator() self.editors = [(self.keymap_editor, "Keymap"), (self.layout_editor, "Layout"), (self.macro_recorder, "Macros"), - (self.matrix_tester, "Matrix tester"), (self.rgb_configurator, "Lighting"), + (self.rgb_configurator, "Lighting"), (self.matrix_tester, "Matrix tester"), (self.firmware_flasher, "Firmware updater")] Unlocker.global_layout_editor = self.layout_editor