| @@ -368,7 +368,7 @@ struct MIDIMapChoice : LedDisplayChoice { | |||||
| // Set text | // Set text | ||||
| text = ""; | text = ""; | ||||
| if (module->ccs[id] >= 0) { | if (module->ccs[id] >= 0) { | ||||
| text += string::f("CC%02d ", module->ccs[id]); | |||||
| text += string::f("CC%02d: ", module->ccs[id]); | |||||
| } | } | ||||
| if (module->paramHandles[id].moduleId >= 0) { | if (module->paramHandles[id].moduleId >= 0) { | ||||
| text += getParamName(); | text += getParamName(); | ||||
| @@ -412,9 +412,10 @@ struct MIDIMapChoice : LedDisplayChoice { | |||||
| return ""; | return ""; | ||||
| ParamQuantity* paramQuantity = m->paramQuantities[paramId]; | ParamQuantity* paramQuantity = m->paramQuantities[paramId]; | ||||
| std::string s; | std::string s; | ||||
| s += mw->model->name; | |||||
| s += " "; | |||||
| s += paramQuantity->name; | s += paramQuantity->name; | ||||
| s += " ("; | |||||
| s += mw->model->name; | |||||
| s += ")"; | |||||
| return s; | return s; | ||||
| } | } | ||||
| }; | }; | ||||