Increase size of the conductors junction points

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4572 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2016-07-13 04:57:02 +00:00
parent c762106e8a
commit e218228ea9
2 changed files with 3 additions and 3 deletions

View File

@@ -606,10 +606,10 @@ switch(e -> key())
case Qt::Key_End: case Qt::Key_End:
current_project->changeLastTab(); current_project->changeLastTab();
return; return;
case Qt::Key_ZoomOut: case Qt::Key_ZoomOut:
zoom(0.85); zoom(0.85);
return; return;
case Qt::Key_ZoomIn: case Qt::Key_ZoomIn:
zoom(1.15); zoom(1.15);
return; return;
case Qt::Key_Up: case Qt::Key_Up:

View File

@@ -498,7 +498,7 @@ void Conductor::paint(QPainter *qp, const QStyleOptionGraphicsItem *options, QWi
qp -> setBrush(junction_brush); qp -> setBrush(junction_brush);
qp -> setRenderHint(QPainter::Antialiasing, true); qp -> setRenderHint(QPainter::Antialiasing, true);
foreach(QPointF point, junctions_list) { foreach(QPointF point, junctions_list) {
qp -> drawEllipse(QRectF(point.x() - 1, point.y() - 1, 2.0, 2.0)); qp -> drawEllipse(QRectF(point.x() - 1, point.y() - 1, 3.0, 3.0));
} }
} }
qp -> restore(); qp -> restore();