forked from openlp/openlp
- do not show the error message when you "rename" a theme, but you do not change the theme name
- fixed a bug, where a theme "lost" its background image when you renamed or copied the theme bzr-revno: 1475
This commit is contained in:
commit
f183215ecc
@ -280,6 +280,8 @@ class ThemeManager(QtGui.QWidget):
|
||||
self.fileRenameForm.fileNameEdit.setText(oldThemeName)
|
||||
if self.fileRenameForm.exec_():
|
||||
newThemeName = unicode(self.fileRenameForm.fileNameEdit.text())
|
||||
if oldThemeName == newThemeName:
|
||||
return
|
||||
if self.checkIfThemeExists(newThemeName):
|
||||
oldThemeData = self.getThemeData(oldThemeName)
|
||||
self.cloneThemeData(oldThemeData, newThemeName)
|
||||
@ -333,6 +335,7 @@ class ThemeManager(QtGui.QWidget):
|
||||
self.oldBackgroundImage = theme.background_filename
|
||||
self.themeForm.theme = theme
|
||||
self.themeForm.exec_(True)
|
||||
self.oldBackgroundImage = None
|
||||
|
||||
def onDeleteTheme(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user