# HG changeset patch # User sheepluva # Date 1421455737 -3600 # Node ID e56db5d988ef28e580211d82b45e9b04376b501c # Parent 31c744824dabe860190ef1ad83267363381a8fac fix issue with contributor hat being displayed for wrong players diff -r 31c744824dab -r e56db5d988ef QTfrontend/model/playerslistmodel.cpp --- a/QTfrontend/model/playerslistmodel.cpp Tue Jan 06 19:26:25 2015 +0100 +++ b/QTfrontend/model/playerslistmodel.cpp Sat Jan 17 01:48:57 2015 +0100 @@ -237,6 +237,7 @@ << index.data(InGame).toBool() << index.data(RoomFilterRole).toBool() << index.data(InRoom).toBool() + << index.data(Contributor).toBool() ; for(int i = flags.size() - 1; i >= 0; --i) diff -r 31c744824dab -r e56db5d988ef QTfrontend/model/playerslistmodel.h --- a/QTfrontend/model/playerslistmodel.h Tue Jan 06 19:26:25 2015 +0100 +++ b/QTfrontend/model/playerslistmodel.h Sat Jan 17 01:48:57 2015 +0100 @@ -23,6 +23,8 @@ InGame = Qt::UserRole + 6, InRoom = Qt::UserRole + 7, Contributor = Qt::UserRole + 8 + // if you add a role that will affect the player icon, + // then also add it to the flags Qlist in updateIcon()! }; enum SpecialRoles {