From 62bcadfa44779b44e94aab6844a27ce5324565ca Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 25 Oct 2015 23:21:27 +0800 Subject: [PATCH] gui/explorer: change submit shortcut to CTRL+ENTER --- artiq/gui/explorer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/gui/explorer.py b/artiq/gui/explorer.py index eefacd999..ab216fd64 100644 --- a/artiq/gui/explorer.py +++ b/artiq/gui/explorer.py @@ -263,8 +263,8 @@ class ExplorerDock(dockarea.Dock): grid.addWidget(self.log_level, 3, 3) submit = QtGui.QPushButton("Submit") - submit.setShortcut("CTRL+S") - submit.setToolTip("Schedule the selected experiment (CTRL+S)") + submit.setShortcut("CTRL+RETURN") + submit.setToolTip("Schedule the selected experiment (CTRL+ENTER)") grid.addWidget(submit, 4, 0, colspan=4) submit.clicked.connect(self.submit_clicked)