Skip to content

Commit

Permalink
Fixed #102.
Browse files Browse the repository at this point in the history
  • Loading branch information
lhchavez committed Nov 25, 2011
1 parent 51b0744 commit 51e3618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gchat/Data/Roster.cs
Expand Up @@ -75,7 +75,7 @@ public class Roster : List<Contact>, INotifyCollectionChanged {

public void Update(Contact item) {
if (CollectionChanged != null) {
CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace, item, IndexOf(item)));
CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset, item, IndexOf(item)));
}
}

Expand Down

0 comments on commit 51e3618

Please sign in to comment.