openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #21204
[Merge] lp:~sam92/openlp/openlp into lp:openlp
Samuel Mehrbrodt has proposed merging lp:~sam92/openlp/openlp into lp:openlp.
Requested reviews:
Tim Bentley (trb143)
For more details, see:
https://code.launchpad.net/~sam92/openlp/openlp/+merge/178453
I changed the patch according to the comment.
--
https://code.launchpad.net/~sam92/openlp/openlp/+merge/178453
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/core/ui/mainwindow.py'
--- openlp/core/ui/mainwindow.py 2013-07-03 20:20:12 +0000
+++ openlp/core/ui/mainwindow.py 2013-08-04 11:42:25 +0000
@@ -1196,6 +1196,9 @@
self.live_controller.splitter.restoreState(settings.value(u'live splitter geometry'))
self.preview_controller.splitter.restoreState(settings.value(u'preview splitter geometry'))
self.control_splitter.restoreState(settings.value(u'main window splitter geometry'))
+ #This needs to be called after restoreState(), because saveState() also saves the "Collapsible" property
+ #which was True (by default) < OpenLP 2.1.
+ self.control_splitter.setChildrenCollapsible(False)
settings.endGroup()
def save_settings(self):
Follow ups