openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #20769
[Merge] lp:~googol/openlp/bug-645452 into lp:openlp
Andreas Preikschat has proposed merging lp:~googol/openlp/bug-645452 into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Related bugs:
Bug #645452 in OpenLP: "Adjust Line Spacing does not work"
https://bugs.launchpad.net/openlp/+bug/645452
For more details, see:
https://code.launchpad.net/~googol/openlp/bug-645452/+merge/169701
- increase possible line spacing
--
https://code.launchpad.net/~googol/openlp/bug-645452/+merge/169701
Your team OpenLP Core is requested to review the proposed merge of lp:~googol/openlp/bug-645452 into lp:openlp.
=== modified file 'openlp/core/ui/themewizard.py'
--- openlp/core/ui/themewizard.py 2013-03-07 08:05:43 +0000
+++ openlp/core/ui/themewizard.py 2013-06-16 17:36:28 +0000
@@ -178,8 +178,8 @@
self.lineSpacingLabel = QtGui.QLabel(self.mainAreaPage)
self.lineSpacingLabel.setObjectName(u'LineSpacingLabel')
self.lineSpacingSpinBox = QtGui.QSpinBox(self.mainAreaPage)
- self.lineSpacingSpinBox.setMinimum(-50)
- self.lineSpacingSpinBox.setMaximum(50)
+ self.lineSpacingSpinBox.setMinimum(-250)
+ self.lineSpacingSpinBox.setMaximum(250)
self.lineSpacingSpinBox.setObjectName(u'LineSpacingSpinBox')
self.mainAreaLayout.addRow(self.lineSpacingLabel, self.lineSpacingSpinBox)
self.outlineCheckBox = QtGui.QCheckBox(self.mainAreaPage)
Follow ups