openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #10428
[Merge] lp:~googol-hush/openlp/tweaks into lp:openlp
Andreas Preikschat has proposed merging lp:~googol-hush/openlp/tweaks into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
For more details, see:
https://code.launchpad.net/~googol-hush/openlp/tweaks/+merge/65889
Hello,
The shortcut for the "Setup" mode was not saved. The mistake was, that the setup entry had the same object name as the "live" mode, thus it used the "live" mode shortcut.
--
https://code.launchpad.net/~googol-hush/openlp/tweaks/+merge/65889
Your team OpenLP Core is requested to review the proposed merge of lp:~googol-hush/openlp/tweaks into lp:openlp.
=== modified file 'openlp/core/ui/mainwindow.py'
--- openlp/core/ui/mainwindow.py 2011-06-21 06:10:03 +0000
+++ openlp/core/ui/mainwindow.py 2011-06-26 06:03:28 +0000
@@ -217,7 +217,7 @@
self.modeDefaultItem = checkable_action(
mainWindow, u'modeDefaultItem', category=UiStrings().ViewMode)
self.modeSetupItem = checkable_action(
- mainWindow, u'modeLiveItem', category=UiStrings().ViewMode)
+ mainWindow, u'modeSetupItem', category=UiStrings().ViewMode)
self.modeLiveItem = checkable_action(
mainWindow, u'modeLiveItem', True, UiStrings().ViewMode)
self.modeGroup = QtGui.QActionGroup(mainWindow)
Follow ups