Skip to content

Commit

Permalink
Fix reloading of UD container loaders.
Browse files Browse the repository at this point in the history
  • Loading branch information
awulkiew committed Feb 24, 2020
1 parent a15736e commit 15726b1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ public override void Initialize(Debugger debugger, string name)
elemType = ExpressionParser.GetValueType(debugger, elemName);
}

public override bool IsUserDefined() { return true; }

public override string Id() { return id; }

public override string ElementType(string type)
Expand Down Expand Up @@ -114,6 +116,8 @@ public override void Initialize(Debugger debugger, string name)
elemType = ExpressionParser.GetValueType(debugger, elemName);
}

public override bool IsUserDefined() { return true; }

public override string Id() { return id; }

public override string ElementType(string type)
Expand Down

0 comments on commit 15726b1

Please sign in to comment.