mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Fixed detaching of auto hide widgets in a floating widget
This commit is contained in:
parent
6b3781f4cb
commit
ce5e68728e
@ -684,8 +684,10 @@ void CDockAreaTitleBar::setAreaFloating()
|
|||||||
{
|
{
|
||||||
// If this is the last dock area in a dock container it does not make
|
// If this is the last dock area in a dock container it does not make
|
||||||
// sense to move it to a new floating widget and leave this one
|
// sense to move it to a new floating widget and leave this one
|
||||||
// empty
|
// empty.
|
||||||
if (d->DockArea->dockContainer()->isFloating() && d->DockArea->dockContainer()->dockAreaCount() == 1)
|
auto DockContainer = d->DockArea->dockContainer();
|
||||||
|
if (DockContainer->isFloating() && DockContainer->dockAreaCount() == 1
|
||||||
|
&& !d->DockArea->isAutoHide())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user