Skip to content

Commit

Permalink
fix issue on osx to bring window to front on startup (ros-visualizati…
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Aug 19, 2013
1 parent 264947a commit 033f9ae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions qt_gui/src/qt_gui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,8 @@ def sigint_handler(*args):

if main_window is not None:
main_window.show()
if sys.platform == 'darwin':
main_window.raise_()

return app.exec_()

Expand Down

0 comments on commit 033f9ae

Please sign in to comment.