diff -Nru kolourpaint-4.12.3/debian/changelog kolourpaint-4.12.90/debian/changelog --- kolourpaint-4.12.3/debian/changelog 2014-03-04 19:56:13.000000000 +0000 +++ kolourpaint-4.12.90/debian/changelog 2014-03-19 11:06:26.000000000 +0000 @@ -1,3 +1,9 @@ +kolourpaint (4:4.12.90-0ubuntu1) trusty; urgency=medium + + * New upstream beta release + + -- Jonathan Riddell Wed, 19 Mar 2014 11:06:25 +0000 + kolourpaint (4:4.12.3-0ubuntu1) trusty; urgency=medium * New upstream bugfix release diff -Nru kolourpaint-4.12.3/debian/control kolourpaint-4.12.90/debian/control --- kolourpaint-4.12.3/debian/control 2014-03-04 19:56:13.000000000 +0000 +++ kolourpaint-4.12.90/debian/control 2014-03-19 11:06:26.000000000 +0000 @@ -6,7 +6,7 @@ Uploaders: Eshat Cakar , Sune Vuorela Build-Depends: kde-sc-dev-latest (>= 4:4.10.2), cmake, debhelper (>= 7.3.16), pkg-kde-tools (>= 0.12), - kdelibs5-dev (>= 4:4.12.3), libqimageblitz-dev + kdelibs5-dev (>= 4:4.12.90), libqimageblitz-dev Standards-Version: 3.9.3 Homepage: http://www.kde.org/ Vcs-Browser: http://bazaar.launchpad.net/~kubuntu-packagers/kubuntu-packaging/kolourpaint diff -Nru kolourpaint-4.12.3/views/kpView_Selections.cpp kolourpaint-4.12.90/views/kpView_Selections.cpp --- kolourpaint-4.12.3/views/kpView_Selections.cpp 2013-12-24 09:38:12.000000000 +0000 +++ kolourpaint-4.12.90/views/kpView_Selections.cpp 2013-11-29 14:28:41.000000000 +0000 @@ -192,24 +192,24 @@ ret += QRect ((x), (y), type##AtomicLength, type##AtomicLength) ADD_BOX_RELATIVE_TO_SELECTION (normal, - selViewRect.width () - normalAtomicLength - 1, - selViewRect.height () - normalAtomicLength - 1); + selViewRect.width () - normalAtomicLength, + selViewRect.height () - normalAtomicLength); ADD_BOX_RELATIVE_TO_SELECTION (normal, - selViewRect.width () - normalAtomicLength - 1, + selViewRect.width () - normalAtomicLength, 0); ADD_BOX_RELATIVE_TO_SELECTION (normal, 0, - selViewRect.height () - normalAtomicLength - 1); + selViewRect.height () - normalAtomicLength); ADD_BOX_RELATIVE_TO_SELECTION (normal, 0, 0); ADD_BOX_RELATIVE_TO_SELECTION (vertEdge, - selViewRect.width () - vertEdgeAtomicLength - 1, + selViewRect.width () - vertEdgeAtomicLength, (selViewRect.height () - vertEdgeAtomicLength) / 2); ADD_BOX_RELATIVE_TO_SELECTION (normal, (selViewRect.width () - normalAtomicLength) / 2, - selViewRect.height () - normalAtomicLength - 1); + selViewRect.height () - normalAtomicLength); ADD_BOX_RELATIVE_TO_SELECTION (normal, (selViewRect.width () - normalAtomicLength) / 2, 0);