summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/settings.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python/settings.py b/python/settings.py
index e187f2fe..61c1c771 100644
--- a/python/settings.py
+++ b/python/settings.py
@@ -70,7 +70,10 @@ class Settings(object):
return core.BNSettingsUpdateProperty(self.registry_id, tr(), id, setting_property)
def get_schema(self):
- return core.BNSettingsGetSchema(self.registry_id);
+ return core.BNSettingsGetSchema(self.registry_id)
+
+ def copy_value(self, dest_registry_id, id):
+ return core.BNSettingsCopyValue(self.registry_id, dest_registry_id, id)
def reset(self, id, view = None, scope = SettingsScope.SettingsAutoScope):
if view is not None: