Skip to content

Commit

Permalink
gui: Also use colour for absolute frequency
Browse files Browse the repository at this point in the history
This was based on a miscommunication between me and Tom
a long while ago, where I mentioned the detuning text
would be more readable on a screen across the lab if
it was white.
  • Loading branch information
dnadlinger committed Jan 1, 2021
1 parent 57138b3 commit a2ed340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wand/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def update_freq(self):
detuning = "Error"
colour = "ff9900"

self.frequency.setText(freq)
self.frequency.setText(freq, color=colour)
self.detuning.setText(detuning, color=colour)

self.wake_loop.set() # recalculate when next measurement due
Expand Down

0 comments on commit a2ed340

Please sign in to comment.