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