From 1cce84516f2522df7e9a394aaa2a007aba49b0a9 Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@monsoon.(none)>
Date: Thu, 8 Nov 2012 01:23:35 -0500
Subject: [PATCH] removed hack for adjusting offset for select iemgui objects
 that introduce inconsistent drawing (those objects have now been fixed)

---
 src/g_text.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/g_text.c b/src/g_text.c
index 049f1cb0c..b05a2b77e 100644
--- a/src/g_text.c
+++ b/src/g_text.c
@@ -338,7 +338,7 @@ void canvas_iemguis(t_glist *gl, t_symbol *guiobjname)
 	int connectme, xpix, ypix, indx, nobj;
     canvas_howputnew(gl, &connectme, &xpix, &ypix, &indx, &nobj);
 
-	/*compensate for the iemgui sliders' xyoffset in case of autopatch */
+	/*NOT NECESSARY ANY MORE: compensate for the iemgui sliders' xyoffset in case of autopatch
 	if(connectme) {
 		if(!strcmp(guiobjname->s_name, "hsl"))
 			xpix = xpix + 3;
@@ -348,7 +348,7 @@ void canvas_iemguis(t_glist *gl, t_symbol *guiobjname)
 			xpix = xpix + 1;
 			ypix = ypix + 2;
 		}
-	}
+	}*/
 	
     pd_vmess(&gl->gl_pd, gensym("editmode"), "i", 1);
     glist_noselect(gl);
-- 
GitLab