Fix the order of arguments passed to changeMaximize method
Summary: BUG: 413424 BUG: 412888 BUG: 413554 FIXED-IN: 5.17.4 Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: davidedmundson, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D25366
This commit is contained in:
parent
270009ed6a
commit
b97d9ad681
1 changed files with 1 additions and 1 deletions
|
@ -2622,7 +2622,7 @@ void AbstractClient::finishMoveResize(bool cancel)
|
|||
const bool restoreV = maximizeMode() == MaximizeVertical &&
|
||||
moveResizeGeom.height() != initialMoveResizeGeometry().height();
|
||||
if (restoreH || restoreV) {
|
||||
changeMaximize(restoreV, restoreH, false);
|
||||
changeMaximize(restoreH, restoreV, false);
|
||||
}
|
||||
}
|
||||
setGeometry(moveResizeGeom);
|
||||
|
|
Loading…
Reference in a new issue