Skip to content

Commit

Permalink
Hide window immediately if starting minimized (#833)
Browse files Browse the repository at this point in the history
Fixes #831
  • Loading branch information
luzip665 committed Dec 11, 2022
1 parent ae4ce2e commit c5827e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,8 @@ def __init(self):
import xlgui

self.gui = xlgui.Main(self)
self.gui.main.window.show_all()
if not self.options.StartMinimized:
self.gui.main.window.show_all()
event.log_event("gui_loaded", self, None)

if splash is not None:
Expand Down

0 comments on commit c5827e6

Please sign in to comment.