Skip to content

Commit

Permalink
Fix StringFormat not being applied...
Browse files Browse the repository at this point in the history
...when model value changes.

Fixes #327
  • Loading branch information
grokys committed Dec 20, 2024
1 parent 8241078 commit 441e1f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected override void OnModelPropertyChanged(object? sender, PropertyChangedEv
try
{
_modelValueChanging = true;
Value = Model?.Value?.ToString();
UpdateValue();
}
finally
{
Expand Down

0 comments on commit 441e1f2

Please sign in to comment.