mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Fixed crash caused by unparented widgets after restoring layout.
This is essentially due to `setDockArea` undoing the earlier `setParent`.
This commit is contained in:
parent
e836b154eb
commit
0e28a22655
@ -841,9 +841,9 @@ void CDockWidget::saveState(QXmlStreamWriter& s) const
|
|||||||
void CDockWidget::flagAsUnassigned()
|
void CDockWidget::flagAsUnassigned()
|
||||||
{
|
{
|
||||||
d->Closed = true;
|
d->Closed = true;
|
||||||
setParent(d->DockManager);
|
|
||||||
setVisible(false);
|
setVisible(false);
|
||||||
setDockArea(nullptr);
|
setDockArea(nullptr);
|
||||||
|
setParent(d->DockManager);
|
||||||
tabWidget()->setParent(this);
|
tabWidget()->setParent(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user