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
|
set
|
||||||
{
|
{
|
||||||
ItemFilterCommentBlock.Comment = value;
|
if (ItemFilterCommentBlock.Comment != value)
|
||||||
RaisePropertyChanged();
|
{
|
||||||
|
ItemFilterCommentBlock.Comment = value;
|
||||||
|
IsDirty = true;
|
||||||
|
RaisePropertyChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue