Add in Ben's fix for Comments not setting dirty state.
This commit is contained in:
parent
6393a53bf5
commit
f1b2be7d74
|
@ -29,8 +29,12 @@ namespace Filtration.ViewModels
|
|||
}
|
||||
set
|
||||
{
|
||||
ItemFilterCommentBlock.Comment = value;
|
||||
RaisePropertyChanged();
|
||||
if (ItemFilterCommentBlock.Comment != value)
|
||||
{
|
||||
ItemFilterCommentBlock.Comment = value;
|
||||
IsDirty = true;
|
||||
RaisePropertyChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue