Skip to content

Commit

Permalink
Update LayoutAnchorable.cs
Browse files Browse the repository at this point in the history
Having second thoughts on setting PreviousContainer = null;
since this would not work for the following workflow with MLib_Test:
0) Clean_All.bat
1) Load project in VS and rebuild
2) Start MLib_Test
3) Drag all Tool Windows by the title bar into floating state
4) Close the floating window with Hide (x) button
5) Exit application (layout is saved)

6) Re-start application (layout is loaded)
Bug:
The hidden Toolwindows cannot be re-shown with Tools>tool window toggle
  • Loading branch information
Dirkster99 authored May 7, 2019
1 parent ccb29f5 commit fbd9266
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ private void UpdateParentVisibility()
{
// Go back to using previous parent
Parent = PreviousContainer;
PreviousContainer = null;
//// PreviousContainer = null;
}

var parentPane = Parent as ILayoutElementWithVisibility;
Expand Down

0 comments on commit fbd9266

Please sign in to comment.