diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2005-09-15 03:17:27 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2005-09-15 03:17:27 +0000 |
commit | 46f38b8d427735b339a98994b0db776b874f05ad (patch) | |
tree | 9292d6021d77955d5b63531176dec11d51312ddf /pd/src/g_text.c | |
parent | b8827f17107c537f192c60eef0d7840ba1d2d3e8 (diff) |
Bug fixes for 0.39-0, in preparation for releasing 0.39-1.
svn path=/trunk/; revision=3561
Diffstat (limited to 'pd/src/g_text.c')
-rw-r--r-- | pd/src/g_text.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pd/src/g_text.c b/pd/src/g_text.c index ed37ca40..06237319 100644 --- a/pd/src/g_text.c +++ b/pd/src/g_text.c @@ -61,8 +61,8 @@ void glist_text(t_glist *gl, t_symbol *s, int argc, t_atom *argv) SETSYMBOL(&at, gensym("comment")); glist_noselect(gl); glist_getnextxy(gl, &xpix, &ypix); - x->te_xpix = glist_pixelstox(gl, xpix-3); - x->te_ypix = glist_pixelstoy(gl, ypix-3); + x->te_xpix = xpix-1; + x->te_ypix = ypix-1; binbuf_restore(x->te_binbuf, 1, &at); glist_add(gl, &x->te_g); glist_noselect(gl); @@ -1030,7 +1030,7 @@ static int text_click(t_gobj *z, struct _glist *glist, if (doit) pd_vmess(&x->te_pd, clicksym, "fffff", (double)xpix, (double)ypix, - (double)shift, 0, (double)alt); + (double)shift, (double)0, (double)alt); return (1); } else return (0); @@ -1039,14 +1039,14 @@ static int text_click(t_gobj *z, struct _glist *glist, { if (doit) gatom_click((t_gatom *)x, (t_floatarg)xpix, (t_floatarg)ypix, - (t_floatarg)shift, 0, (t_floatarg)alt); + (t_floatarg)shift, (t_floatarg)0, (t_floatarg)alt); return (1); } else if (x->te_type == T_MESSAGE) { if (doit) message_click((t_message *)x, (t_floatarg)xpix, (t_floatarg)ypix, - (t_floatarg)shift, 0, (t_floatarg)alt); + (t_floatarg)shift, (t_floatarg)0, (t_floatarg)alt); return (1); } else return (0); |