1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-03-14 10:09:52 +08:00

Fixed wrong call to base class function in DockWidget::showNormal

This commit is contained in:
Uwe Kindler 2020-04-10 12:35:47 +02:00
parent 1f995299f0
commit 16a149b436

View File

@ -899,7 +899,7 @@ void CDockWidget::showNormal()
}
else
{
Super::showFullScreen();
Super::showNormal();
}
}