Skip to content

Commit

Permalink
fix: return the value of a property whose editor can't be resolved, n…
Browse files Browse the repository at this point in the history
…ot the object itself
  • Loading branch information
rdavisau committed Apr 22, 2019
1 parent 036fb41 commit 75f817d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DumpEditable/EditableDumpContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private object GetEditor(object o, PropertyInfo p)
OnChanged?.Invoke();;
});

return o;
return p.GetValue(o);
}
}

Expand Down

0 comments on commit 75f817d

Please sign in to comment.