Remove isWaitingForInteractiveMoveResizeSync() check when interactively moving a window
There's already a check at the start of the function. Although interactive moves don't need to be synchronized with the client, in general.
This commit is contained in:
parent
6435adc9d8
commit
47829e6ac3
1 changed files with 2 additions and 4 deletions
|
@ -1463,10 +1463,8 @@ void Window::handleInteractiveMoveResize(const QPointF &local, const QPointF &gl
|
|||
nextMoveResizeGeom = nextMoveGeometry(); // fix position
|
||||
}
|
||||
|
||||
if (!isWaitingForInteractiveMoveResizeSync()) {
|
||||
move(nextMoveResizeGeom.topLeft());
|
||||
Q_EMIT interactiveMoveResizeStepped(nextMoveResizeGeom);
|
||||
}
|
||||
move(nextMoveResizeGeom.topLeft());
|
||||
Q_EMIT interactiveMoveResizeStepped(nextMoveResizeGeom);
|
||||
}
|
||||
|
||||
if (!isRequestedFullScreen()) {
|
||||
|
|
Loading…
Reference in a new issue