Offset dialogue in Main GUI points users towards user guide.

This commit is contained in:
Etoh 2013-06-10 19:23:14 +02:00
parent e8cd6ac41d
commit 3290d1340a
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class MainWindow(QtGui.QMainWindow):
def setOffset(self): def setOffset(self):
newoffset, ok = QtGui.QInputDialog.getText(self,"Set Offset", newoffset, ok = QtGui.QInputDialog.getText(self,"Set Offset",
"Offset (+/-):", QtGui.QLineEdit.Normal, "Offset (see http://syncplay.pl/guide/ for usage instructions):", QtGui.QLineEdit.Normal,
"") "")
if ok and newoffset != '': if ok and newoffset != '':
o = re.match(constants.UI_OFFSET_REGEX, "o " + newoffset) o = re.match(constants.UI_OFFSET_REGEX, "o " + newoffset)