Fix Postsetup

This commit is contained in:
Tim Bentley 2011-04-14 19:55:41 +01:00
parent e1bc312eb1
commit 4dd70d454f
1 changed files with 6 additions and 2 deletions

View File

@ -106,5 +106,9 @@ class SettingsForm(QtGui.QDialog, Ui_SettingsDialog):
"""
Run any post-setup code for the tabs on the form
"""
for tabIndex in range(0, self.stackedLayout.count()):
self.stackedLayout.widget(tabIndex).postSetUp()
self.generalTab.postSetUp()
self.themesTab.postSetUp()
self.advancedTab.postSetUp()
for plugin in self.plugins:
if plugin.settings_tab:
plugin.settings_tab.postSetUp()