mirror of https://github.com/Syncplay/syncplay
Offset dialogue in Main GUI points users towards user guide.
This commit is contained in:
parent
e8cd6ac41d
commit
3290d1340a
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue