openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #10594
[Merge] lp:~raoul-snyman/openlp/ui-tweaks into lp:openlp
Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/ui-tweaks into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~raoul-snyman/openlp/ui-tweaks/+merge/66415
A couple of minor UI tweaks.
--
https://code.launchpad.net/~raoul-snyman/openlp/ui-tweaks/+merge/66415
Your team OpenLP Core is requested to review the proposed merge of lp:~raoul-snyman/openlp/ui-tweaks into lp:openlp.
=== modified file 'openlp/core/ui/serviceitemeditdialog.py'
--- openlp/core/ui/serviceitemeditdialog.py 2011-06-12 16:02:52 +0000
+++ openlp/core/ui/serviceitemeditdialog.py 2011-06-30 07:13:29 +0000
@@ -35,6 +35,8 @@
def setupUi(self, serviceItemEditDialog):
serviceItemEditDialog.setObjectName(u'serviceItemEditDialog')
self.dialogLayout = QtGui.QGridLayout(serviceItemEditDialog)
+ self.dialogLayout.setContentsMargins(8, 8, 8, 8)
+ self.dialogLayout.setSpacing(8)
self.dialogLayout.setObjectName(u'dialogLayout')
self.listWidget = QtGui.QListWidget(serviceItemEditDialog)
self.listWidget.setAlternatingRowColors(True)
=== modified file 'openlp/core/ui/servicenoteform.py'
--- openlp/core/ui/servicenoteform.py 2011-06-13 20:49:14 +0000
+++ openlp/core/ui/servicenoteform.py 2011-06-30 07:13:29 +0000
@@ -49,6 +49,8 @@
def setupUi(self):
self.setObjectName(u'serviceNoteEdit')
self.dialogLayout = QtGui.QVBoxLayout(self)
+ self.dialogLayout.setContentsMargins(8, 8, 8, 8)
+ self.dialogLayout.setSpacing(8)
self.dialogLayout.setObjectName(u'verticalLayout')
self.textEdit = QtGui.QTextEdit(self)
self.textEdit.setObjectName(u'textEdit')
Follow ups