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 cea1327 commit 04f6d91Copy full SHA for 04f6d91
src/FloatingDockContainer.cpp
@@ -1331,7 +1331,8 @@ void CFloatingDockContainer::onMaximizeRequest()
1331
//============================================================================
1332
void CFloatingDockContainer::showNormal(bool fixGeometry)
1333
{
1334
- if (windowState() == Qt::WindowMaximized)
+ if ( (windowState() & Qt::WindowMaximized) != 0 ||
1335
+ (windowState() & Qt::WindowFullScreen) != 0)
1336
1337
QRect oldNormal = normalGeometry();
1338
Super::showNormal();
0 commit comments