| 83 | } |
| 84 | |
| 85 | void |
| 86 | SelectionService::hover_reset () |
| 87 | { |
| 88 | if (m_hover_wait) { |
| 89 | #if defined(HAVE_QT) |
| 90 | m_timer.stop (); |
| 91 | #endif |
| 92 | m_hover_wait = false; |
| 93 | } |
| 94 | if (m_hover) { |
| 95 | mp_view->clear_transient_selection (); |
| 96 | m_hover = false; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | #if defined(HAVE_QT) |
| 101 | void |
no test coverage detected