Skip to content

Commit

Permalink
Merge pull request #129 from scdmitryvodich/Issue_111
Browse files Browse the repository at this point in the history
Fix #111 with AvalonDock.LayoutRoot doesn't know how to deserialize.
  • Loading branch information
Dirkster99 authored Feb 26, 2020
2 parents b44b663 + f58e285 commit c13facc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/Components/AvalonDock/Layout/LayoutRoot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,7 @@ private List<object> ReadElementList(XmlReader reader, bool isFloatingWindow)
{
var resultList = new List<object>();
while (reader.NodeType == XmlNodeType.Whitespace) reader.Read();
if (reader.NodeType == XmlNodeType.EndElement) return resultList;

if (reader.IsEmptyElement)
{
Expand Down

0 comments on commit c13facc

Please sign in to comment.