| 352 | } |
| 353 | |
| 354 | void ScrollIndicator::enterEvent(QEnterEvent *event){ |
| 355 | if(!pressed){ |
| 356 | hovTimer->start(100); |
| 357 | curColor = hoverColor; |
| 358 | update(); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | void ScrollIndicator::leaveEvent(QEvent *event){ |
| 363 | hovTimer->stop(); |
nothing calls this directly
no outgoing calls
no test coverage detected