Skip to content

Commit e3eb918

Browse files
authored
Merge pull request #1645 from tomazc/fix_progress_scoreplots
[FIX] OWScatterPlot: Fix progress bar percentages running over 100%
2 parents 5247253 + 19a222e commit e3eb918

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Orange/widgets/visualize/owscatterplot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ def set_data(self, data):
305305
if not same_domain:
306306
self.init_attr_values()
307307
self.vizrank.initialize()
308+
self.vizrank.attrs = self.data.domain.attributes if self.data is not None else []
308309
self.vizrank_button.setEnabled(
309310
self.data is not None and self.data.domain.class_var is not None
310311
and len(self.data.domain.attributes) > 1 and len(self.data) > 1)

0 commit comments

Comments
 (0)