[fondue-commits] [SCM] Fondue Font Editor branch, master, updated. 097b323e15f08ea5e8c1070c59c211e384fc8003

Eugeniy Meshcheryakov eugen at debian.org
Thu May 15 18:58:04 UTC 2008


The following commit has been merged in the master branch:
commit 3119345577295ec499b73e53b28f33d75adee5db
Author: Eugeniy Meshcheryakov <eugen at debian.org>
Date:   Thu May 15 17:37:06 2008 +0200

    fix points renumbering

diff --git a/gui/controlpoint.cxx b/gui/controlpoint.cxx
index 4d650bf..c6ea556 100644
--- a/gui/controlpoint.cxx
+++ b/gui/controlpoint.cxx
@@ -77,7 +77,7 @@ void ControlPoint::glyphPointChanged(int number)
 void ControlPoint::glyphPointsAdded(int start, int end)
 {
 	// renumber points after first one
-	if (m_pointNumber > start) {
+	if (m_pointNumber >= start) {
 		m_pointNumber += end - start + 1;
 		setupColors();
 	}

-- 
Fondue Font Editor



More information about the fondue-commits mailing list