mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#4131 Qt5: Use showNormal() instead of show()
This commit is contained in:
parent
39a0c3f4d0
commit
415a8bba94
@ -623,7 +623,9 @@ void RiuPlotMainWindow::addViewer(QWidget* viewer, const RimMdiWindowGeometry& w
|
|||||||
initialStateMaximized = true;
|
initialStateMaximized = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
subWin->show();
|
// Qt5: Using show() causes a update issue in MDI area
|
||||||
|
// https://github.com/OPM/ResInsight/issues/4131
|
||||||
|
subWin->showNormal();
|
||||||
|
|
||||||
// Move and resize must be done after window is visible
|
// Move and resize must be done after window is visible
|
||||||
// If not, the position and size of the window is different to specification (Windows 7)
|
// If not, the position and size of the window is different to specification (Windows 7)
|
||||||
|
Loading…
Reference in New Issue
Block a user