Skip to content

Commit

Permalink
owpolar: try shorter strings so that the tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
markotoplak committed Sep 1, 2022
1 parent 84e77a2 commit 86c56e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orangecontrib/spectroscopy/widgets/owpolar.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def __init__(self):
formlayout2 = QFormLayout()
form2.setLayout(formlayout2)

self.multifile = gui.widgetBox(vbox2, "Multifile Input (all angles in 1 table)",
self.multifile = gui.widgetBox(vbox2, "All angles in a single input",
sizePolicy=(QSizePolicy.Minimum, QSizePolicy.Fixed))

self.anglemetas = DomainModel(DomainModel.METAS, valid_types=DiscreteVariable)
Expand All @@ -501,7 +501,7 @@ def __init__(self):
self.anglesel.setDisabled(True)


self.multiin = gui.widgetBox(vbox2, "Multiple Inputs (1 angle per input)",
self.multiin = gui.widgetBox(vbox2, "Single angle per input",
sizePolicy=(QSizePolicy.Minimum, QSizePolicy.Fixed))

vbox2.layout().addWidget(form2)
Expand Down

0 comments on commit 86c56e0

Please sign in to comment.