forked from openlp/openlp
removed print
This commit is contained in:
parent
022ed36dc5
commit
4231692ae1
@ -53,7 +53,7 @@ class HistoryComboBox(QtGui.QComboBox):
|
|||||||
self.setSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Preferred)
|
self.setSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Preferred)
|
||||||
self.setInsertPolicy(QtGui.QComboBox.InsertAtTop)
|
self.setInsertPolicy(QtGui.QComboBox.InsertAtTop)
|
||||||
|
|
||||||
def keyPressEvlent(self, event):
|
def keyPressEvent(self, event):
|
||||||
"""
|
"""
|
||||||
Override the inherited keyPressEvent method to emit the ``returnPressed`` signal and to save the current text to
|
Override the inherited keyPressEvent method to emit the ``returnPressed`` signal and to save the current text to
|
||||||
the dropdown list.
|
the dropdown list.
|
||||||
|
@ -170,7 +170,6 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard, RegistryProperties):
|
|||||||
elif self.currentId() == FirstTimePage.Progress:
|
elif self.currentId() == FirstTimePage.Progress:
|
||||||
return -1
|
return -1
|
||||||
elif self.currentId() == FirstTimePage.NoInternet:
|
elif self.currentId() == FirstTimePage.NoInternet:
|
||||||
print(1111)
|
|
||||||
return FirstTimePage.Progress
|
return FirstTimePage.Progress
|
||||||
elif self.currentId() == FirstTimePage.Themes:
|
elif self.currentId() == FirstTimePage.Themes:
|
||||||
self.application.set_busy_cursor()
|
self.application.set_busy_cursor()
|
||||||
|
Loading…
Reference in New Issue
Block a user