Drop the remaining geometry updates blockers in Window

While these geometry updates blockers are used in functions that can
call moveResize() several times in a row, it's not critical.

On the other hand, by removing these blockers, no other core code is
going to rely on GeometryUpdatesBlocker, which opens us the future
opportunitinies to drop it and make geometry manipulation code simpler.
This commit is contained in:
Vlad Zahorodnii 2024-04-29 13:41:49 +03:00
parent e4e5c52300
commit b2193f370d

View file

@ -1257,7 +1257,6 @@ bool Window::startInteractiveMoveResize()
void Window::finishInteractiveMoveResize(bool cancel)
{
const bool wasMove = isInteractiveMove();
GeometryUpdatesBlocker blocker(this);
leaveInteractiveMoveResize();
doFinishInteractiveMoveResize();
@ -3469,8 +3468,6 @@ void Window::setQuickTileMode(QuickTileMode mode, bool keyboard)
workspace()->updateFocusMousePosition(Cursors::self()->mouse()->pos()); // may cause leave event
GeometryUpdatesBlocker blocker(this);
const QuickTileMode oldMode = requestedQuickTileMode();
QPointF whichScreen = keyboard ? moveResizeGeometry().center() : Cursors::self()->mouse()->pos();