Skip to content

Commit

Permalink
Hide Angular Cents in cent hiding tuningmode
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Oct 3, 2023
1 parent 9b3bd51 commit dde82e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/surge-xt/gui/overlays/TuningOverlays.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,8 @@ void RadialScaleGraph::paint(juce::Graphics &g)
.translated(0, -tr.getHeight()));
}
g.setColour(juce::Colours::white);
g.drawText(msg, tr, al);
if (centsShowing)
g.drawText(msg, tr, al);
// Useful to debug text layout
// g.setColour(rot ? juce::Colours::blue : juce::Colours::red);
// g.drawRect(tr, 0.01 * irsf);
Expand Down

0 comments on commit dde82e6

Please sign in to comment.