summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-04-10 08:00:28 +0200
committerAleks Kissinger <aleks0@gmail.com>2018-04-10 08:00:28 +0200
commit716db4a4951a4c6259ba6a1fa06e8228970e37b7 (patch)
tree9af3c22fc3fd6ec40350882635cd94f4ee5e89b1
parent86641371a35086e94e89d3ccc389a75c073a9312 (diff)
Revert "Revert "bigger bezier handles""
This reverts commit f144fbf42b9e8ff82b237a1be1fb0b906186795d.
-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 ec87815..08a5ad1 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.05), GLOBAL_SCALEF * (-0.05),
- GLOBAL_SCALEF * 0.1, GLOBAL_SCALEF * 0.1);
+ _cp1Item->setRect(GLOBAL_SCALEF * (-0.1), GLOBAL_SCALEF * (-0.1),
+ GLOBAL_SCALEF * 0.2, GLOBAL_SCALEF * 0.2);
_cp1Item->setVisible(false);
_cp2Item = new QGraphicsEllipseItem(this);
_cp2Item->setParentItem(this);
- _cp2Item->setRect(GLOBAL_SCALEF * (-0.05), GLOBAL_SCALEF * (-0.05),
- GLOBAL_SCALEF * 0.1, GLOBAL_SCALEF * 0.1);
+ _cp2Item->setRect(GLOBAL_SCALEF * (-0.1), GLOBAL_SCALEF * (-0.1),
+ GLOBAL_SCALEF * 0.2, GLOBAL_SCALEF * 0.2);
_cp2Item->setVisible(false);
readPos();