* @brief Disables highlight when the sensor axis is moved */
| 49 | * @brief Disables highlight when the sensor axis is moved |
| 50 | */ |
| 51 | void JoySensorButtonPushButton::disableFlashes() |
| 52 | { |
| 53 | if (m_button != nullptr) |
| 54 | { |
| 55 | disconnect(m_button, &JoySensorButton::clicked, this, &JoySensorButtonPushButton::flash); |
| 56 | disconnect(m_button, &JoySensorButton::released, this, &JoySensorButtonPushButton::unflash); |
| 57 | } |
| 58 | unflash(); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * @brief Enables highlight when the sensor axis is moved |
nothing calls this directly
no outgoing calls
no test coverage detected