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();
}
}