Skip to content

Commit

Permalink
Fix three option
Browse files Browse the repository at this point in the history
  • Loading branch information
paddyroddy committed Jul 27, 2023
1 parent 796fff5 commit 6981f48
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions btrack/napari/widgets/_hypothesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def _create_hypotheses_widgets() -> dict[str, QtWidgets.QWidget]:
widget = QtWidgets.QCheckBox()
widget.setCheckState(True) # noqa: FBT003
widget.setToolTip(tooltip)
widget.setTrisgtate(False) # noqa: FBT003
hypotheses_widgets[hypothesis] = (hypothesis, widget)

# P_FP is always required
Expand Down Expand Up @@ -154,6 +155,7 @@ def create_hypothesis_model_widgets() -> dict[str, QtWidgets.QWidget]:
"This means that tracks can initialize or terminate anywhere and"
"at any time in the dataset."
)
relax.setTristate(False) # noqa: FBT003
widgets["relax"] = ("relax thresholds", relax)

return widgets

0 comments on commit 6981f48

Please sign in to comment.