diff --git a/qt/applications/workbench/workbench/config/test/test_user.py b/qt/applications/workbench/workbench/config/test/test_user.py index 44cbe84769b07c27902e347a9c4efca68e573c75..a9bdc3cdb46c7f4508a2c036d86e22ab271ce51e 100644 --- a/qt/applications/workbench/workbench/config/test/test_user.py +++ b/qt/applications/workbench/workbench/config/test/test_user.py @@ -68,6 +68,12 @@ class ConfigUserTest(TestCase): self.assertFalse(self.cfg.has('main', 'missing-key')) self.assertFalse(self.cfg.has('main/missing-key')) + def test_remove_key(self): + self.cfg.set('main', 'key1', 1) + self.assertTrue(self.cfg.has('main/key1')) + self.cfg.remove('main/key1') + self.assertFalse(self.cfg.has('main/key1')) + # ---------------------------------------------- # Failure tests # ---------------------------------------------- diff --git a/qt/applications/workbench/workbench/config/user.py b/qt/applications/workbench/workbench/config/user.py index f7658e2db6120f807037fea3bce0e937de621a89..cfce377d88d37a8b53e05d4956ef02f670f5e9f8 100644 --- a/qt/applications/workbench/workbench/config/user.py +++ b/qt/applications/workbench/workbench/config/user.py @@ -114,6 +114,13 @@ class UserConfig(object): value = extra self.qsettings.setValue(option, value) + def remove(self, option, second=None): + """Removes a key from the settings. Key not existing returns without effect. + """ + option = self._check_section_option_is_valid(option, second) + if self.has(option): + self.qsettings.remove(option) + # ------------------------------------------------------------------------- # "Private" methods # -------------------------------------------------------------------------