From 2c80bc959151a6b9888a8521a0efbba1a1843cb6 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Fri, 25 Jan 2019 09:55:33 -0500 Subject: Add CopyValue to Settings APi. --- python/settings.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'python') 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: -- cgit v1.3.1