| 278 | } |
| 279 | |
| 280 | void onDragStart(const DragStartEvent& e) override |
| 281 | { |
| 282 | if (e.button != GLFW_MOUSE_BUTTON_LEFT) |
| 283 | return; |
| 284 | |
| 285 | dragPos = APP->scene->rack->getMousePos(); |
| 286 | originalBox = widget->box; |
| 287 | } |
| 288 | |
| 289 | void onDragMove(const DragMoveEvent& e) override |
| 290 | { |
nothing calls this directly
no test coverage detected