From 2355e435a5ca1efe045c9049ef63b68e3991d09d Mon Sep 17 00:00:00 2001 From: dismine Date: Mon, 19 Jan 2015 20:07:32 +0200 Subject: [PATCH] Fix for method Crossing. --HG-- branch : feature --- src/libs/vlayout/vlayoutpaper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/vlayout/vlayoutpaper.cpp b/src/libs/vlayout/vlayoutpaper.cpp index 6838f972d..c79bf7939 100644 --- a/src/libs/vlayout/vlayoutpaper.cpp +++ b/src/libs/vlayout/vlayoutpaper.cpp @@ -518,7 +518,7 @@ VLayoutPaper::CrossingType VLayoutPaper::Crossing(const VLayoutDetail &detail, c if (type == QLineF::BoundedIntersection) { - if (TrueIntersection(globalEdge, detailEdge, xPoint)) + if (TrueIntersection(GlobalEdge(globalI), detail.Edge(detailI), xPoint)) { return CrossingType::Intersection; }