[update/bugfix] big update on filter options:

- added toggle and QSetting for automatic filtering when picking
- filtering in 3comp window independent from main plot, current filter options are copied after 3comp. init though
- several bugfixes when activating/deactivating filter
This commit is contained in:
2018-01-09 11:44:22 +01:00
parent 549700bf7a
commit 4150e7f7d4
8 changed files with 6236 additions and 59 deletions
+2 -2
View File
@@ -327,9 +327,9 @@ def real_Bool(value):
:return: true boolean value
:rtype: bool
"""
if value == 'True':
if value in ['True', 'true']:
return True
elif value == 'False':
elif value in ['False', 'false']:
return False
else:
return value