Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
Changes the WorkspaceViewModel.IsDirty property to only raise a prope…
Browse files Browse the repository at this point in the history
…rty changed event when it has really been changed.
  • Loading branch information
Jack Hughes committed Jul 24, 2015
1 parent c376a47 commit 01c02de
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Dyna Application/DynaApp/ViewModels/WorkspaceViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public bool IsDirty
get { return this.isDirty; }
set
{
if (this.isDirty == value) return;
this.isDirty = value;
OnPropertyChanged("IsDirty");
}
Expand Down

0 comments on commit 01c02de

Please sign in to comment.