removed theme sorting

This commit is contained in:
Andreas Preikschat 2010-11-13 08:17:39 +01:00
parent 38397f07a2
commit 272eea72b7
2 changed files with 0 additions and 2 deletions

View File

@ -195,7 +195,6 @@ class ThemesTab(SettingsTab):
self.settingsSection + u'/global theme', self.settingsSection + u'/global theme',
QtCore.QVariant(u'')).toString()) QtCore.QVariant(u'')).toString())
self.DefaultComboBox.clear() self.DefaultComboBox.clear()
theme_list.sort()
for theme in theme_list: for theme in theme_list:
self.DefaultComboBox.addItem(theme) self.DefaultComboBox.addItem(theme)
id = self.DefaultComboBox.findText( id = self.DefaultComboBox.findText(

View File

@ -243,7 +243,6 @@ class BiblesTab(SettingsTab):
""" """
self.BibleThemeComboBox.clear() self.BibleThemeComboBox.clear()
self.BibleThemeComboBox.addItem(u'') self.BibleThemeComboBox.addItem(u'')
theme_list.sort()
for theme in theme_list: for theme in theme_list:
self.BibleThemeComboBox.addItem(theme) self.BibleThemeComboBox.addItem(theme)
index = self.BibleThemeComboBox.findText( index = self.BibleThemeComboBox.findText(