Skip to content

Commit

Permalink
Make status bar dependent on UI mode (#2063)
Browse files Browse the repository at this point in the history
* remove bug for dark mode

* fix toggle case

---------

Co-authored-by: Liezl Maree <[email protected]>
  • Loading branch information
7174Andy and roomrys authored Dec 18, 2024
1 parent 1eff33d commit 47a0efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sleap/gui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,7 @@ def updateStatusMessage(self, message: Optional[str] = None):
message += f" [Hidden] Press '{hide_key}' to toggle."
self.statusBar().setStyleSheet("color: red")
else:
self.statusBar().setStyleSheet("color: black")
self.statusBar().setStyleSheet("")

self.statusBar().showMessage(message)

Expand Down

0 comments on commit 47a0efa

Please sign in to comment.