From 86604b1f04772fa7fad4ffee04dda3fc0ed3f699 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Sun, 20 Mar 2022 10:39:14 +0100 Subject: [PATCH] remove second window that was added for demonstration purposes --- main.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/main.py b/main.py index 70f34a2..0e400e3 100644 --- a/main.py +++ b/main.py @@ -29,14 +29,9 @@ configuration = Config(configuration_file_path, default_configuration) # It seems like opening multiple instances already works as intended main_window = gui_handler.Window() -main_window2 = gui_handler.Window() main_window.set_title("Concorde IDE") -main_window2.set_title("Another window") main_window.set_size(configuration.get_configuration_value("window size")["x"], configuration.get_configuration_value("window size")["y"]) -main_window2.set_size(400, 500) - main_window.update_menus(gui_helper.menu_structure) -main_window2.update_menus(gui_helper.menu_structure) #TODO: get resolution of main window on exit and save it back to the configuration