File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ class OWMosaicDisplay(OWWidget):
3636
3737 settingsHandler = DomainContextHandler ()
3838 use_boxes = Setting (True )
39- variable1 = ContextSetting ("" )
40- variable2 = ContextSetting ("" )
41- variable3 = ContextSetting ("" )
42- variable4 = ContextSetting ("" )
43- selection = ContextSetting ({} )
39+ variable1 = ContextSetting ("" , exclude_metas = False )
40+ variable2 = ContextSetting ("" , exclude_metas = False )
41+ variable3 = ContextSetting ("" , exclude_metas = False )
42+ variable4 = ContextSetting ("" , exclude_metas = False )
43+ selection = ContextSetting (set () )
4444 # interior_coloring is context setting to properly reset it
4545 # if the widget switches to regression and back (set setData)
4646 interior_coloring = ContextSetting (1 )
@@ -192,7 +192,7 @@ def handleNewSignals(self):
192192 self .reset_graph ()
193193
194194 def clear_selection (self ):
195- self .selection = {}
195+ self .selection = set ()
196196 self .update_selection_rects ()
197197 self .send_selection ()
198198
You can’t perform that action at this time.
0 commit comments