Work in progress on prefs overhaul

This commit is contained in:
David Robertson
2020-05-02 01:11:31 +01:00
parent 86ef9d9038
commit a00cdd6de7
10 changed files with 463 additions and 92 deletions

View File

@@ -23,8 +23,8 @@ else:
class GeneralAppPrefGroupUI(OptionsGroupUI):
def __init__(self, decimals=4, parent=None):
super(GeneralAppPrefGroupUI, self).__init__(self, parent=parent)
def __init__(self, decimals=4, **kwargs):
super().__init__(**kwargs)
self.setTitle(_("App Preferences"))
self.decimals = decimals