Skip to content

Commit

Permalink
gui/explorer: add CTRL+S shortcut to submit
Browse files Browse the repository at this point in the history
sbourdeauducq committed Oct 24, 2015
1 parent 53a9d7e commit 5ae9bbc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions artiq/gui/explorer.py
Original file line number Diff line number Diff line change
@@ -263,6 +263,8 @@ def __init__(self, dialog_parent, status_bar, schedule_ctl):
grid.addWidget(self.log_level, 3, 3)

submit = QtGui.QPushButton("Submit")
submit.setShortcut("CTRL+S")
submit.setToolTip("Schedule the selected experiment (CTRL+S)")
grid.addWidget(submit, 4, 0, colspan=4)
submit.clicked.connect(self.submit_clicked)

0 comments on commit 5ae9bbc

Please sign in to comment.