| 495 | } |
| 496 | |
| 497 | void EffectsHandler::stopMouseInterception(Effect *effect) |
| 498 | { |
| 499 | if (!m_grabbedMouseEffects.contains(effect)) { |
| 500 | return; |
| 501 | } |
| 502 | m_grabbedMouseEffects.removeAll(effect); |
| 503 | if (m_grabbedMouseEffects.isEmpty()) { |
| 504 | doStopMouseInterception(); |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | void EffectsHandler::doStopMouseInterception() |
| 509 | { |
no test coverage detected