Skip to content

Commit 562ebb2

Browse files
authored
Merge pull request #4204 from VesnaT/fix_dpw_summary
OWDataProjectionWidget: Set output summary
2 parents d7c9b72 + 34dc29d commit 562ebb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/visualize/utils/widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def set_input_summary(self, data):
501501
self.info.set_input_summary(summary)
502502

503503
def set_output_summary(self, data):
504-
summary = str(len(data)) if data else self.info.NoInput
504+
summary = str(len(data)) if data else self.info.NoOutput
505505
self.info.set_output_summary(summary)
506506

507507
def get_subset_mask(self):

0 commit comments

Comments
 (0)