| 948 | } |
| 949 | |
| 950 | void CtrlrPanel::editModeChanged(const bool isInEditMode) |
| 951 | { |
| 952 | midiInputThread.panelEditModeChanged (isInEditMode); |
| 953 | midiControllerInputThread.panelEditModeChanged (isInEditMode); |
| 954 | editMode = isInEditMode; |
| 955 | for (int i=0; i<ctrlrModulators.size(); i++) |
| 956 | { |
| 957 | if (ctrlrModulators[i]->getComponent()) |
| 958 | { |
| 959 | ctrlrModulators[i]->getComponent()->panelEditModeChanged(isInEditMode); |
| 960 | } |
| 961 | } |
| 962 | } |
| 963 | |
| 964 | const String CtrlrPanel::getVersionString(const bool includeVersionName, const bool includeTime, const String versionSeparator) |
| 965 | { |
nothing calls this directly
no test coverage detected