Skip to content

Commit

Permalink
Merge pull request #4996 from irgolic/disable-scatterplot-checkbox
Browse files Browse the repository at this point in the history
Disable scatterplot checkbox
  • Loading branch information
janezd committed Oct 23, 2020
2 parents 1d29cf9 + 9cf927b commit 69709ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Orange/widgets/visualize/owscatterplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,8 @@ def _add_controls(self):
callback=self.graph.update_regression_line,
tooltip=
"If checked, fit line to group (minimize distance from points);\n"
"otherwise fit y as a function of x (minimize vertical distances)")
"otherwise fit y as a function of x (minimize vertical distances)",
disabledBy=self.cb_reg_line)

def _add_controls_axis(self):
common_options = dict(
Expand Down
2 changes: 1 addition & 1 deletion requirements-gui.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
orange-canvas-core>=0.1.18,<0.2a
orange-widget-base>=4.8.1
orange-widget-base>=4.9.0

PyQt5>=5.12,!=5.15.1 # 5.15.1 skipped because of QTBUG-87057 - affects select columns
PyQtWebEngine>=5.12
Expand Down

0 comments on commit 69709ac

Please sign in to comment.