| 1167 | } |
| 1168 | |
| 1169 | void ModularSynth::KeyReleased(int key) |
| 1170 | { |
| 1171 | key = KeyToLower(key); |
| 1172 | |
| 1173 | //if (key == 'c') |
| 1174 | // mouseReleased(GetMouseX(&mModuleContainer), GetMouseY(&mModuleContainer), 0); |
| 1175 | |
| 1176 | mUILayerModuleContainer.KeyReleased(key); |
| 1177 | mModuleContainer.KeyReleased(key); |
| 1178 | } |
| 1179 | |
| 1180 | float ModularSynth::GetMouseX(ModuleContainer* context, float rawX /*= FLT_MAX*/) |
| 1181 | { |
nothing calls this directly
no test coverage detected