Another display issue fixed

pull/1/head
asb2m10 10 years ago
parent 3e7b5f50a3
commit d2c9bbdd42
  1. BIN
      Builds/MacOSX/Dexed.xcodeproj/project.xcworkspace/xcuserdata/asb2m10.xcuserdatad/UserInterfaceState.xcuserstate
  2. 8
      Source/PluginParam.cpp

@ -127,6 +127,14 @@ float CtrlDX::getValueHost() {
void CtrlDX::setValueHost(float f) {
setValue((f * steps));
DexedAudioProcessorEditor *editor = (DexedAudioProcessorEditor *) parent->getActiveEditor();
if ( editor == NULL ) {
return;
}
String msg;
msg << label << " = " << getValueDisplay();
editor->global.setParamMessage(msg);
}
void CtrlDX::setValue(int v) {

Loading…
Cancel
Save