Browse Source

Fix initial angle of PlugWidget.

tags/v2.1.0
Andrew Belt 2 years ago
parent
commit
8fca198dfe
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      src/app/CableWidget.cpp

+ 1
- 0
CHANGELOG.md View File

@@ -5,6 +5,7 @@ In this document, Ctrl means Cmd on Mac.
### 2.1.0 () ### 2.1.0 ()
- Update to RtMidi 5.0.0. - Update to RtMidi 5.0.0.
- Update to RtAudio 5.2.0. - Update to RtAudio 5.2.0.
- Fix plug graphic sometimes being incorrectly rotated.
- Core - Core
- Add "Pitch bend range" setting to MIDI to CV module. - Add "Pitch bend range" setting to MIDI to CV module.
- Fix MIDI to CV incorrectly setting pitch wheel and mod wheel outputs in MPE mode. - Fix MIDI to CV incorrectly setting pitch wheel and mod wheel outputs in MPE mode.


+ 1
- 1
src/app/CableWidget.cpp View File

@@ -34,7 +34,7 @@ struct PlugLight : componentlibrary::TRedGreenBlueLight<app::MultiLightWidget> {




struct PlugWidget : widget::Widget { struct PlugWidget : widget::Widget {
float angle = 0.f;
float angle = 0.5f * M_PI;
PortWidget* portWidget = NULL; PortWidget* portWidget = NULL;


widget::FramebufferWidget* fb; widget::FramebufferWidget* fb;


Loading…
Cancel
Save