Fix some glitches moving ellipses to the top/left edges (fix #1648)

This commit is contained in:
David Capello 2018-03-06 20:00:34 -03:00
parent 184736760a
commit 5b75355de4

View File

@ -285,6 +285,10 @@ public:
bounds.w = 2*a+3;
bounds.h = 2*b+3;
}
else {
++bounds.w;
++bounds.h;
}
return bounds;
}