various changes to stabilize sdr switchovers

This commit is contained in:
Jakob Ketterl
2019-05-10 18:30:53 +02:00
parent b17364e701
commit dd3a970497
3 changed files with 54 additions and 27 deletions

View File

@ -7,6 +7,8 @@ class Property(object):
def getValue(self):
return self.value
def setValue(self, value):
if (self.value == value):
return self
self.value = value
for c in self.callbacks:
try: