From c517140a51256169cdcff0a4c2d5973d5f367259 Mon Sep 17 00:00:00 2001 From: rikai Date: Sun, 23 Jul 2017 20:14:10 -0700 Subject: [PATCH] Fixes opening behind other windows on OS X Just a quick fix, this will raise the window to the front after it's created. --- src/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.py b/src/main.py index 6a9a25e..8d5a769 100644 --- a/src/main.py +++ b/src/main.py @@ -57,6 +57,7 @@ def main(): # window.verticalLayout_2.setContentsMargins(0, topMargin, 0, 0) main = MainWindow(window, proj) + window.raise_() signal.signal(signal.SIGINT, main.cleanUp) atexit.register(main.cleanUp)