mirror of https://github.com/m-labs/artiq.git
gui: typos
This commit is contained in:
parent
7886827b80
commit
2871b5e078
|
@ -304,7 +304,7 @@ class _ExperimentDock(dockarea.Dock):
|
||||||
except:
|
except:
|
||||||
# May happen when experiment has been removed
|
# May happen when experiment has been removed
|
||||||
# from repository/explist
|
# from repository/explist
|
||||||
logger.warning("failed to request termination of instances of %s",
|
logger.warning("failed to submit '%s'",
|
||||||
self.expname, exc_info=True)
|
self.expname, exc_info=True)
|
||||||
|
|
||||||
def reqterm_clicked(self):
|
def reqterm_clicked(self):
|
||||||
|
@ -313,7 +313,7 @@ class _ExperimentDock(dockarea.Dock):
|
||||||
except:
|
except:
|
||||||
# May happen when experiment has been removed
|
# May happen when experiment has been removed
|
||||||
# from repository/explist
|
# from repository/explist
|
||||||
logger.warning("failed to request termination of instances of %s",
|
logger.warning("failed to request termination of instances of '%s'",
|
||||||
self.expname, exc_info=True)
|
self.expname, exc_info=True)
|
||||||
|
|
||||||
def save_state(self):
|
def save_state(self):
|
||||||
|
|
|
@ -48,7 +48,7 @@ class ExplorerDock(dockarea.Dock):
|
||||||
|
|
||||||
submit = QtGui.QPushButton("Submit")
|
submit = QtGui.QPushButton("Submit")
|
||||||
submit.setIcon(QtGui.QApplication.style().standardIcon(
|
submit.setIcon(QtGui.QApplication.style().standardIcon(
|
||||||
QtGui.QStyle.SP_DialogOkButton))
|
QtGui.QStyle.SP_DialogOkButton))
|
||||||
submit.setToolTip("Schedule the selected experiment (Ctrl+Return)")
|
submit.setToolTip("Schedule the selected experiment (Ctrl+Return)")
|
||||||
self.addWidget(submit, 1, 1)
|
self.addWidget(submit, 1, 1)
|
||||||
submit.clicked.connect(self.submit_clicked)
|
submit.clicked.connect(self.submit_clicked)
|
||||||
|
|
Loading…
Reference in New Issue