Skip to content

Commit

Permalink
feat: add Refresh method that acts like we expect a DumpContainer ref…
Browse files Browse the repository at this point in the history
…resh to act
  • Loading branch information
rdavisau committed Apr 25, 2019
1 parent 6bfdec7 commit 9a2bfac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/DumpEditable/EditableDumpContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ public static void SetValue(object o, PropertyInfo p, object v)
else
p.SetValue(o, v);
}

public new void Refresh()
{
SetContent();
base.Refresh();
}
}

public static class EditableDumpContainer
Expand Down

0 comments on commit 9a2bfac

Please sign in to comment.