diff options
| author | DH4 | 2017-07-24 04:47:35 -0500 |
|---|---|---|
| committer | GitHub | 2017-07-24 04:47:35 -0500 |
| commit | c799305eff66432d1d42ff3a8d1b7fd24448e1b6 (patch) | |
| tree | 7f13ee029ebbc761158f94e22335571c745a31d3 /src | |
| parent | 4becfe3b51ae058dc8600abeac3d1d6b5a1eab76 (diff) | |
| parent | c517140a51256169cdcff0a4c2d5973d5f367259 (diff) | |
Merge pull request #48 from rikai/patch-1
Fixes opening behind other windows on OS X
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.py | 1 |
1 files changed, 1 insertions, 0 deletions
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) |
