Skip to content

Commit

Permalink
fix color of flush-button in toggled state
Browse files Browse the repository at this point in the history
fixes #490
  • Loading branch information
bimac committed Sep 11, 2023
1 parent aff48a5 commit 31689fe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions iblrig/gui/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,11 @@ def flush(self):
return

if self.uiPushFlush.isChecked():
self.uiPushFlush.setStyleSheet('QPushButton {background-color: rgb(128, 128, 255);}')
self.uiPushStart.setEnabled(False)
else:
bpod.close()
self.uiPushFlush.setStyleSheet('')
self.uiPushStart.setEnabled(True)

def help(self):
Expand Down

0 comments on commit 31689fe

Please sign in to comment.