final fix for Trb143

This commit is contained in:
Andreas Preikschat 2012-07-01 22:44:40 +02:00
parent fb59eab8e7
commit b409bacca3
1 changed files with 2 additions and 2 deletions

View File

@ -620,8 +620,8 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard):
os.path.split(unicode(self.theme.background_filename))[1]
saveTo = os.path.join(self.path, self.theme.theme_name, filename)
saveFrom = self.theme.background_filename
if not self.edit_mode and not \
self.thememanager.checkIfThemeExists(self.theme.theme_name):
if not self.edit_mode and \
not self.thememanager.checkIfThemeExists(self.theme.theme_name):
return
self.thememanager.saveTheme(self.theme, saveFrom, saveTo)
return QtGui.QDialog.accept(self)