Commit f316280a authored by AUTOMATIC's avatar AUTOMATIC
Browse files

fix the error that prevents from setting some options

parent d61f0ded
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -406,7 +406,8 @@ class Options:
            if key in self.data or key in self.data_labels:
                assert not cmd_opts.freeze_settings, "changing settings is disabled"

                comp_args = opts.data_labels[key].component_args
                info = opts.data_labels.get(key, None)
                comp_args = info.component_args if info else None
                if isinstance(comp_args, dict) and comp_args.get('visible', True) is False:
                    raise RuntimeError(f"not possible to set {key} because it is restricted")