mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Increased marker size(width)
This commit is contained in:
parent
640829d89d
commit
e4d777bace
@ -2,7 +2,8 @@
|
||||
#include "markeritem.h"
|
||||
|
||||
|
||||
#define SIZE 8
|
||||
#define SIZE 8
|
||||
#define WIDTH 2
|
||||
|
||||
MarkerItem::MarkerItem(QGraphicsItem *parent) : QGraphicsItem(parent)
|
||||
{
|
||||
@ -21,7 +22,7 @@ void MarkerItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option
|
||||
Q_UNUSED(widget);
|
||||
|
||||
painter->setRenderHint(QPainter::Antialiasing, false);
|
||||
painter->setPen(Qt::red);
|
||||
painter->setPen(QPen(Qt::red, WIDTH));
|
||||
painter->drawLine(-SIZE/2, 0, SIZE/2, 0);
|
||||
painter->drawLine(0, -SIZE/2, 0, SIZE/2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user