| 481 | } |
| 482 | |
| 483 | static void InputWindowPositionContinue( |
| 484 | WindowBase& w, const ScreenCoordsXY& lastScreenCoords, const ScreenCoordsXY& newScreenCoords) |
| 485 | { |
| 486 | int32_t snapProximity = w.flags.has(WindowFlag::noSnapping) ? 0 : Config::Get().general.windowSnapProximity; |
| 487 | WindowMoveAndSnap(w, newScreenCoords - lastScreenCoords, snapProximity); |
| 488 | } |
| 489 | |
| 490 | static void InputWindowPositionEnd(WindowBase& w, const ScreenCoordsXY& screenCoords) |
| 491 | { |
no test coverage detected