Skip to content

Commit

Permalink
Merge pull request #342 from polepage/develop
Browse files Browse the repository at this point in the history
Fixed dependency property name of property Groups in GalleryGroupFilter.
  • Loading branch information
batzen authored Aug 25, 2016
2 parents 1466a73 + 163b0cb commit 018b506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Fluent.Ribbon/Controls/GalleryGroupFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public string Groups
}

/// <summary>
/// Using a DependencyProperty as the backing store for ContextualGroups.
/// Using a DependencyProperty as the backing store for Groups.
/// This enables animation, styling, binding, etc...
/// </summary>
public static readonly DependencyProperty GroupsProperty =
DependencyProperty.Register("ContextualGroups", typeof(string),
DependencyProperty.Register("Groups", typeof(string),
typeof(GalleryGroupFilter), new UIPropertyMetadata(string.Empty));
}
}

0 comments on commit 018b506

Please sign in to comment.