| 256 | } |
| 257 | |
| 258 | void TreeScrollArea::mousePressEvent(QMouseEvent *me) |
| 259 | { |
| 260 | auto n = findNodeClicked(me->x(), me->y()); |
| 261 | if (n != NodeID::NoNode) |
| 262 | { |
| 263 | emit nodeClicked(n); |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | void TreeScrollArea::mouseDoubleClickEvent(QMouseEvent *me) |
| 268 | { |
nothing calls this directly
no outgoing calls
no test coverage detected