* Added darkBlue TextColor for Connected Friend

* Set TextColor Bold


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@949 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-01-25 19:02:52 +00:00
parent 30b6e6c423
commit 92ffcec3ed

View File

@ -336,7 +336,11 @@ void PeersDialog::insertPeers()
// CsoLer: I uncommented the color because it's really confortable
// to be able to see at some distance that people are connected.
// The blue/gray icons need a close look indeed.
item -> setBackground(i,QBrush(Qt::green));
//item -> setBackground(i,QBrush(Qt::green))
item -> setTextColor(i,(Qt::darkBlue));
QFont font ;
font.setBold(true);
item -> setFont(i,font);
item -> setIcon(0,(QIcon(IMAGE_ONLINE)));
}
}