From 3b83e4da746a8cbc998a7088cbbf582d6551fb71 Mon Sep 17 00:00:00 2001 From: Marko Toplak Date: Wed, 27 Nov 2024 21:32:09 +0100 Subject: [PATCH] Polar: fix context settings as in #707 --- orangecontrib/spectroscopy/widgets/owpolar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/orangecontrib/spectroscopy/widgets/owpolar.py b/orangecontrib/spectroscopy/widgets/owpolar.py index 19f9a47d5..4ca3b857b 100644 --- a/orangecontrib/spectroscopy/widgets/owpolar.py +++ b/orangecontrib/spectroscopy/widgets/owpolar.py @@ -463,11 +463,11 @@ class Outputs: resizing_enabled = True alpha = Setting(0, schema_only=True) - map_x = ContextSetting(None) - map_y = ContextSetting(None) + map_x = ContextSetting(None, exclude_attributes=True, exclude_class_vars=True) + map_y = ContextSetting(None, exclude_attributes=True, exclude_class_vars=True) invert_angles = Setting(False, schema_only=True) average = Setting(False, schema_only=True) - angles = ContextSetting(None) + angles = ContextSetting(None, exclude_attributes=True, exclude_class_vars=True) spec_type = Setting(0) feats: List[Variable] = ContextSetting([])