Skip to content

Commit

Permalink
corrected angle knob not showing right click popup
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavnatarajan committed Nov 10, 2022
1 parent b7f50f3 commit ff10975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ XfeedAudioProcessorEditor::XfeedAudioProcessorEditor (XfeedAudioProcessor& p)
angleKnob.setRotaryParameters(knobsMinAngle, knobsMaxAngle, true);
angleKnob.setTextValueSuffix(juce::CharPointer_UTF8("\xc2\xb0")); // degree symbol
angleKnob.setValue(p.defaultAngle);
gainKnob.setPopupMenuEnabled(true);
angleKnob.setPopupMenuEnabled(true);
angleKnob.setPopupDisplayEnabled(false, false, this);
angleKnob.setTextBoxStyle(juce::Slider::TextBoxBelow, false, 60, 25);
angleKnob.setDoubleClickReturnValue(true, p.defaultAngle);
Expand Down

0 comments on commit ff10975

Please sign in to comment.