forked from openlp/openlp
removed bug/feature which resets the values in the spin box
This commit is contained in:
parent
9709429261
commit
c0df166105
@ -178,8 +178,7 @@ class GeneralTab(SettingsTab):
|
|||||||
QtCore.QObject.connect(self.customXValueEdit,
|
QtCore.QObject.connect(self.customXValueEdit,
|
||||||
QtCore.SIGNAL(u'valueChanged(int)'), self.onDisplayChanged)
|
QtCore.SIGNAL(u'valueChanged(int)'), self.onDisplayChanged)
|
||||||
QtCore.QObject.connect(self.monitorComboBox,
|
QtCore.QObject.connect(self.monitorComboBox,
|
||||||
QtCore.SIGNAL(u'currentIndexChanged(int)'),
|
QtCore.SIGNAL(u'currentIndexChanged(int)'), self.onDisplayChanged)
|
||||||
self.onMonitorComboBoxChanged)
|
|
||||||
# Reload the tab, as the screen resolution/count may have changed.
|
# Reload the tab, as the screen resolution/count may have changed.
|
||||||
QtCore.QObject.connect(Receiver.get_receiver(),
|
QtCore.QObject.connect(Receiver.get_receiver(),
|
||||||
QtCore.SIGNAL(u'config_screen_changed'), self.load)
|
QtCore.SIGNAL(u'config_screen_changed'), self.load)
|
||||||
@ -378,16 +377,3 @@ class GeneralTab(SettingsTab):
|
|||||||
Called when the width, height, x position or y position has changed.
|
Called when the width, height, x position or y position has changed.
|
||||||
"""
|
"""
|
||||||
self.display_changed = True
|
self.display_changed = True
|
||||||
|
|
||||||
def onMonitorComboBoxChanged(self, index):
|
|
||||||
"""
|
|
||||||
The ``monitorComboBox`` has changed to the given ``index``.
|
|
||||||
"""
|
|
||||||
self.display_changed = True
|
|
||||||
if self.overrideCheckBox.isChecked():
|
|
||||||
return
|
|
||||||
screen = self.screens.screen_list[index]
|
|
||||||
self.customXValueEdit.setValue(screen[u'size'].x())
|
|
||||||
self.customYValueEdit.setValue(screen[u'size'].y())
|
|
||||||
self.customHeightValueEdit.setValue(screen[u'size'].height())
|
|
||||||
self.customWidthValueEdit.setValue(screen[u'size'].width())
|
|
||||||
|
Loading…
Reference in New Issue
Block a user