We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d01ed commit 16e4ec9Copy full SHA for 16e4ec9
Orange/widgets/visualize/utils/widget.py
@@ -455,7 +455,10 @@ def set_data(self, data):
455
self.openContext(self.data)
456
self._invalidated = not (
457
data_existed and self.data is not None and
458
- array_equal(effective_data.X, self.effective_data.X))
+ array_equal(effective_data.X, self.effective_data.X) and
459
+ array_equal(effective_data.Y, self.effective_data.Y) and
460
+ array_equal(effective_data.metas, self.effective_data.metas)
461
+ )
462
self._domain_invalidated = not (
463
464
effective_data.domain.checksum()
0 commit comments