| 288 | } |
| 289 | |
| 290 | void SimulationInteractionController::rightMouseButtonReleased() |
| 291 | { |
| 292 | if (_modesAtClick.positionSelectionMode) { |
| 293 | return; |
| 294 | } |
| 295 | |
| 296 | if (!_modesAtClick.editMode) { |
| 297 | SimulationView::get().setMotionBlur(SimulationView::get().getMotionBlur() / 2); |
| 298 | } else { |
| 299 | if (!_simulationFacade->isSimulationRunning()) { |
| 300 | _selectionRect.reset(); |
| 301 | } |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | void SimulationInteractionController::processMouseWheel(IntVector2D const& mousePos) |
| 306 | { |
nothing calls this directly
no test coverage detected