[GRASS-SVN] r34305 - grass/branches/develbranch_6/lib/ogsf

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Nov 15 11:14:39 EST 2008


Author: marisn
Date: 2008-11-15 11:14:39 -0500 (Sat, 15 Nov 2008)
New Revision: 34305

Modified:
   grass/branches/develbranch_6/lib/ogsf/gsd_objs.c
Log:
Fix displaying X symbol and raster query line by reverting too aggresive fudge usage introduced in r19241

Modified: grass/branches/develbranch_6/lib/ogsf/gsd_objs.c
===================================================================
--- grass/branches/develbranch_6/lib/ogsf/gsd_objs.c	2008-11-15 15:29:20 UTC (rev 34304)
+++ grass/branches/develbranch_6/lib/ogsf/gsd_objs.c	2008-11-15 16:14:39 UTC (rev 34305)
@@ -200,8 +200,9 @@
 
 	for (i = 0; i < np; i++) {
 	    /* ACS */
-	    /*      pts[i][Z] += fudge; */
-	    pts[i][Z] *= fudge;
+            /* reverting back, as it broke displaying X symbol and query line */
+	    pts[i][Z] += fudge;
+	    /*pts[i][Z] *= fudge;*/
 	    gsd_vert_func(pts[i]);
 	}
 



More information about the grass-commit mailing list