| 1466 | #pragma mark - Viewport dragging |
| 1467 | |
| 1468 | static void viewportDragBegin(Window* w) |
| 1469 | { |
| 1470 | w->flags &= ~Ui::WindowFlags::scrollingToLocation; |
| 1471 | state(State::viewportRight); |
| 1472 | _dragWindowType = w->type; |
| 1473 | _dragWindowNumber = w->number; |
| 1474 | _ticksSinceDragStart = 0; |
| 1475 | } |
| 1476 | |
| 1477 | #pragma mark - Scrollview dragging |
| 1478 |
no test coverage detected