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.
2 parents 7356c5d + d76b45f commit 8ef0aecCopy full SHA for 8ef0aec
Orange/widgets/visualize/owscatterplotgraph.py
@@ -1176,8 +1176,9 @@ def update_density(self):
1176
if c_data is None:
1177
return
1178
visible_c_data = self._filter_visible(c_data)
1179
- mask = np.bitwise_and(np.isfinite(visible_c_data),
1180
- visible_c_data < MAX_COLORS - 1)
+ mask = np.isfinite(visible_c_data)
+ if not self.master.is_continuous_color():
1181
+ mask = np.bitwise_and(mask, visible_c_data < MAX_COLORS - 1)
1182
pens = self.scatterplot_item.data['pen']
1183
rgb_data = [
1184
pen.color().getRgb()[:3] if pen is not None else (255, 255, 255)
0 commit comments