这是indexloc提供的服务,不要输入任何密码
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/Components/AvalonDock/Layout/LayoutRoot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -383,9 +383,9 @@ public void CollectGarbage()
//for each pane that is empty
foreach (var emptyPane in this.Descendents().OfType<ILayoutPane>().Where(p => p.ChildrenCount == 0))
{
//...set null any reference coming from contents not yet hosted in a floating window
//...set null any reference coming from contents
foreach (var contentReferencingEmptyPane in this.Descendents().OfType<LayoutContent>()
.Where(c => ((ILayoutPreviousContainer)c).PreviousContainer == emptyPane && !c.IsFloating))
.Where(c => ((ILayoutPreviousContainer)c).PreviousContainer == emptyPane))
{
if (contentReferencingEmptyPane is LayoutAnchorable anchorable &&
!anchorable.IsVisible)
Expand Down