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 0a6c58f commit 6924e69Copy full SHA for 6924e69
src/DockAreaTitleBar.cpp
@@ -684,8 +684,10 @@ void CDockAreaTitleBar::setAreaFloating()
684
{
685
// If this is the last dock area in a dock container it does not make
686
// sense to move it to a new floating widget and leave this one
687
- // empty
688
- if (d->DockArea->dockContainer()->isFloating() && d->DockArea->dockContainer()->dockAreaCount() == 1)
+ // empty.
+ auto DockContainer = d->DockArea->dockContainer();
689
+ if (DockContainer->isFloating() && DockContainer->dockAreaCount() == 1
690
+ && !d->DockArea->isAutoHide())
691
692
return;
693
}
0 commit comments