summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Moroney <darakian@gmail.com>2018-04-09 15:23:46 +0200
committerJon Moroney <darakian@gmail.com>2018-04-09 15:23:46 +0200
commitf144fbf42b9e8ff82b237a1be1fb0b906186795d (patch)
treee41c48224f7891e9ba0b6833e9ed26358dfa6cb1
parent16890898289e32d4d0ba4641c55a5cae32eae6f2 (diff)
Revert "bigger bezier handles"
This reverts commit 075a94d502020a7056dfa8fa1a4ba500378efe31.
-rw-r--r--src/gui/edgeitem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/edgeitem.cpp b/src/gui/edgeitem.cpp
index 08a5ad1..ec87815 100644
--- a/src/gui/edgeitem.cpp
+++ b/src/gui/edgeitem.cpp
@@ -11,14 +11,14 @@ EdgeItem::EdgeItem(Edge *edge)
_cp1Item = new QGraphicsEllipseItem(this);
_cp1Item->setParentItem(this);
- _cp1Item->setRect(GLOBAL_SCALEF * (-0.1), GLOBAL_SCALEF * (-0.1),
- GLOBAL_SCALEF * 0.2, GLOBAL_SCALEF * 0.2);
+ _cp1Item->setRect(GLOBAL_SCALEF * (-0.05), GLOBAL_SCALEF * (-0.05),
+ GLOBAL_SCALEF * 0.1, GLOBAL_SCALEF * 0.1);
_cp1Item->setVisible(false);
_cp2Item = new QGraphicsEllipseItem(this);
_cp2Item->setParentItem(this);
- _cp2Item->setRect(GLOBAL_SCALEF * (-0.1), GLOBAL_SCALEF * (-0.1),
- GLOBAL_SCALEF * 0.2, GLOBAL_SCALEF * 0.2);
+ _cp2Item->setRect(GLOBAL_SCALEF * (-0.05), GLOBAL_SCALEF * (-0.05),
+ GLOBAL_SCALEF * 0.1, GLOBAL_SCALEF * 0.1);
_cp2Item->setVisible(false);
readPos();