Skip to content

Commit

Permalink
Fix #25 Check for IsListView not IsContainer (name mismatch)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed Jun 10, 2019
1 parent 063ff96 commit bf004a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ protected void DeserializeBase(TObject item, XElement node)
if (item.IsElement != isElement)
item.IsElement = isElement;

var isContainer = info.Element("IsContainer").ValueOrDefault(true);
var isContainer = info.Element("IsListView").ValueOrDefault(false);
if (item.IsContainer != isContainer)
item.IsContainer = isContainer;

Expand Down

0 comments on commit bf004a9

Please sign in to comment.