fixed bug 1183078

Fixes: https://launchpad.net/bugs/1183078
This commit is contained in:
Andreas Preikschat 2013-07-19 15:57:19 +02:00
parent ac07275613
commit a0f35e0d5e

View File

@ -308,12 +308,12 @@ class Plugin(QtCore.QObject):
Perform tasks on application startup Perform tasks on application startup
""" """
# FIXME: Remove after 2.2 release. # FIXME: Remove after 2.2 release.
# This is needed to load the list of images/media/presentation from the config saved # This is needed to load the list of media/presentation from the config saved before the settings rewrite.
# before the settings rewrite.
if self.media_item_class is not None and self.name != u'images': if self.media_item_class is not None and self.name != u'images':
loaded_list = Settings().get_files_from_config(self) loaded_list = Settings().get_files_from_config(self)
# Now save the list to the config using our Settings class. # Now save the list to the config using our Settings class.
Settings().setValue(u'%s/%s files' % (self.settings_section, self.name), loaded_list) if loaded_list:
Settings().setValue(u'%s/%s files' % (self.settings_section, self.name), loaded_list)
def uses_theme(self, theme): def uses_theme(self, theme):
""" """