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

@ -28,10 +28,14 @@ namespace Filtration.ViewModels
return ItemFilterCommentBlock.Comment; return ItemFilterCommentBlock.Comment;
} }
set set
{
if (ItemFilterCommentBlock.Comment != value)
{ {
ItemFilterCommentBlock.Comment = value; ItemFilterCommentBlock.Comment = value;
IsDirty = true;
RaisePropertyChanged(); RaisePropertyChanged();
} }
} }
} }
}
} }