Beta version 4.5.9: Fix new window position.

This commit is contained in:
John Preston 2023-02-02 22:10:44 +04:00
parent fa4b538e6f
commit 37cf12f06e
1 changed files with 2 additions and 2 deletions

View File

@ -653,8 +653,8 @@ WindowPosition MainWindow::nextInitialChildPosition(bool primary) {
const auto use = position + (skip * _lastChildIndex);
return withScreenInPosition({
.scale = cScale(),
.x = position.x(),
.y = position.y(),
.x = use.x(),
.y = use.y(),
.w = width,
.h = height,
});