| 118 | } |
| 119 | |
| 120 | void ScrollAreaCustom::mouseReleaseEvent(QMouseEvent *event){ |
| 121 | //start scrolling |
| 122 | if(container->y() > 0 || container->y() + container->height() < this->height()) |
| 123 | bounceBack(); |
| 124 | else |
| 125 | rfrshView->start(30); |
| 126 | pressed = false; |
| 127 | } |
| 128 | |
| 129 | void ScrollAreaCustom::bounceBack(){ |
| 130 | rfrshView->stop(); |
nothing calls this directly
no outgoing calls
no test coverage detected