multiwindow: Use showNormal() instead of show() to ensure normal geometry

Change-Id: Ice607f536a620da5a70f2ba066f4983bb78c6288
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
This commit is contained in:
Tor Arne Vestbø 2016-08-25 13:02:47 +02:00 committed by Tor Arne Vestbø
parent 8082c0dc81
commit bcbc8120b3

View File

@ -187,7 +187,7 @@ int main(int argc, char **argv)
QPoint position = availableGeometry.topLeft();
position += QPoint(col * windowWidth, row * windowHeight);
w->setFramePosition(position);
w->show();
w->showNormal();
}
int r = app.exec();