From 5b75355de4effc3dafdf3673c76c3cef69d96507 Mon Sep 17 00:00:00 2001 From: David Capello Date: Tue, 6 Mar 2018 20:00:34 -0300 Subject: [PATCH] Fix some glitches moving ellipses to the top/left edges (fix #1648) --- src/app/tools/intertwiners.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/tools/intertwiners.h b/src/app/tools/intertwiners.h index 636336374..26dc26f6f 100644 --- a/src/app/tools/intertwiners.h +++ b/src/app/tools/intertwiners.h @@ -285,6 +285,10 @@ public: bounds.w = 2*a+3; bounds.h = 2*b+3; } + else { + ++bounds.w; + ++bounds.h; + } return bounds; }