Skip to content

Commit

Permalink
FIX: Qt event loop does not execute the app in MS Windows
Browse files Browse the repository at this point in the history
Fixes #162
  • Loading branch information
carez committed Nov 6, 2021
1 parent 73a9f92 commit eb40aa9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bluesky_widgets/qt/_event_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def gui_qt(app_name):
# if this is the first time the Qt app is being instantiated, we set
# the name, so that we know whether to raise_ in Window.show()
app = QApplication([app_name])
app.setApplicationName(app_name)
global _our_app_name
_our_app_name = app_name
else:
Expand Down

0 comments on commit eb40aa9

Please sign in to comment.