From c4472d88d85dd42b40afa5895d6b78ff366e5105 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Tue, 7 Jul 2015 23:06:50 -0400 Subject: [PATCH] fix initial y-position of obj/msg box text --- pd/src/g_rtext.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pd/src/g_rtext.c b/pd/src/g_rtext.c index 08887f9d1..6ecf77707 100644 --- a/pd/src/g_rtext.c +++ b/pd/src/g_rtext.c @@ -373,7 +373,8 @@ static void rtext_senditup(t_rtext *x, int action, int *widthp, int *heightp, canvas, x->x_tag, rtext_gettype(x)->s_name, glist_isselected(x->x_glist, ((t_gobj*)x->x_text)), LMARGIN, - pixhigh - BMARGIN - TMARGIN - 1, + fontheight, + //pixhigh - BMARGIN - TMARGIN - 1, // TMARGIN, // BMARGIN, // pixhigh, -- GitLab