Fixes to the PGP Network View.

* Made Signature Arrows Red.
 * they now move around correctly too.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1398 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2009-07-21 21:22:28 +00:00
parent a436053e8b
commit cf60b0a0b9
4 changed files with 6 additions and 2 deletions

View file

@ -116,7 +116,8 @@ void Arrow::paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *
// Draw the line itself
QLineF line(sourcePoint, destPoint);
painter->setPen(QPen(Qt::black, 1, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
//painter->setPen(QPen(Qt::black, 1, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
painter->setPen(QPen(Qt::red, 1, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
painter->drawLine(line);
// Draw the arrows if there's enough room