diff options
author | André Nusser <andre.nusser@googlemail.com> | 2017-04-17 11:23:09 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2017-04-17 11:25:53 +0200 |
commit | f505c622eda8cdd02da00742e794c9b940902a8d (patch) | |
tree | 2d194ad7c8f97ed0828178e86310ce6880a48b6d /plugingui/humanizerframecontent.cc | |
parent | a36b20f60a33b04ec69b65cfce0dd0059ff9e382 (diff) |
Write knob value outside of the knob in the humanizer frame.
Diffstat (limited to 'plugingui/humanizerframecontent.cc')
-rw-r--r-- | plugingui/humanizerframecontent.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugingui/humanizerframecontent.cc b/plugingui/humanizerframecontent.cc index 6a01b7b..9795b76 100644 --- a/plugingui/humanizerframecontent.cc +++ b/plugingui/humanizerframecontent.cc @@ -38,12 +38,14 @@ HumanizerframeContent::HumanizerframeContent(Widget* parent) : Widget(parent) layout.setVAlignment(VAlignment::center); attack.resize(80, 80); - attackKnob.resize(60, 60); + attackKnob.resize(30, 30); + attackKnob.showValue(false); attack.setControl(&attackKnob); layout.addItem(&attack); falloff.resize(80, 80); - falloffKnob.resize(60, 60); + falloffKnob.resize(30, 30); + falloffKnob.showValue(false); falloff.setControl(&falloffKnob); layout.addItem(&falloff); |