Skip to content

Commit

Permalink
Merge pull request #4097 from janezd/owsom-fix-width
Browse files Browse the repository at this point in the history
[FIX] Self-Organizing Map: Fix restoring width
  • Loading branch information
lanzagar authored Oct 11, 2019
2 parents 3f9469a + 6ef66f2 commit e378407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/widgets/unsupervised/owsom.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def __init__(self):
spin_x.setValue(self.size_x)
gui.widgetLabel(box3, "×")
spin_y = gui.spin(**spinargs)
spin_x.setValue(self.size_y)
spin_y.setValue(self.size_y)
gui.rubber(box3)
self.manual_box.setEnabled(not self.auto_dimension)

Expand Down

0 comments on commit e378407

Please sign in to comment.