Add in Ben's fix for Comments not setting dirty state.

This commit is contained in:
GlenCFL 2017-12-08 12:54:53 -05:00
parent 6393a53bf5
commit f1b2be7d74
1 changed files with 6 additions and 2 deletions

View File

@ -29,8 +29,12 @@ namespace Filtration.ViewModels
}
set
{
ItemFilterCommentBlock.Comment = value;
RaisePropertyChanged();
if (ItemFilterCommentBlock.Comment != value)
{
ItemFilterCommentBlock.Comment = value;
IsDirty = true;
RaisePropertyChanged();
}
}
}
}