We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e05adb commit 3e43e03Copy full SHA for 3e43e03
gui/qt/mainwindow.cpp
@@ -1150,7 +1150,7 @@ void MainWindow::showEvent(QShowEvent *e) {
1150
DockWidget *MainWindow::redistributeFindDock(const QPoint &pos) {
1151
QWidget *child = childAt(pos);
1152
if (QTabBar *tabBar = findSelfOrParent<QTabBar *>(child)) {
1153
- child = childAt({pos.x(), tabBar->mapTo(this, QPoint{}).y() - 1});
+ child = childAt(QPoint({pos.x(), tabBar->mapTo(this, QPoint{}).y() - 1}));
1154
}
1155
return findSelfOrParent<DockWidget *>(child);
1156
0 commit comments