Skip to content

Commit

Permalink
fix: typo lead to error when using rating threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 27, 2020
1 parent bf5690f commit c6c6461
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.6.6
- fix: typo lead to error when using rating threshold
0.6.5
- build: macOS build failed due to PyInstaller issue 4626
0.6.4
Expand Down
2 changes: 1 addition & 1 deletion pyjibe/fd/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def on_rating_threshold(self):
if rating >= thresh:
it.setCheckState(3, QtCore.Qt.Checked)
else:
it.setCheckState(3, QtCore.Qt.Unhecked)
it.setCheckState(3, QtCore.Qt.Unchecked)
self.list_curves.blockSignals(False)
# TODO:
# - make this more efficient. There is a lot written to disk here.
Expand Down

0 comments on commit c6c6461

Please sign in to comment.