Skip to content

Commit

Permalink
gui: set application name in Gnome task switcher
Browse files Browse the repository at this point in the history
Non-hacky suggestions welcome.
sbourdeauducq committed May 6, 2016
1 parent 597d7c3 commit bcfb01b
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion artiq/frontend/artiq_browser.py
Original file line number Diff line number Diff line change
@@ -79,7 +79,7 @@ def main():
args = get_argparser().parse_args()
init_logger(args)

app = QtWidgets.QApplication([])
app = QtWidgets.QApplication(["ARTIQ Browser"])
loop = QEventLoop(app)
asyncio.set_event_loop(loop)
atexit.register(loop.close)
2 changes: 1 addition & 1 deletion artiq/frontend/artiq_dashboard.py
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@ def main():
args = get_argparser().parse_args()
init_logger(args)

app = QtWidgets.QApplication([])
app = QtWidgets.QApplication(["ARTIQ Dashboard"])
loop = QEventLoop(app)
asyncio.set_event_loop(loop)
atexit.register(loop.close)

0 comments on commit bcfb01b

Please sign in to comment.