diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 00d40501..b3a74cc8 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -2762,7 +2762,7 @@ class PylotParaBox(QtGui.QWidget): elif type(box) == QtGui.QCheckBox: if value == 'True': value = True - if value == 'False': + if value == 'False' or value is None: value = False box.setChecked(value) elif type(box) == list: