From 6b7024976759669a11735428ae4856001fc1a2f2 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Wed, 8 Mar 2017 23:36:13 -0500 Subject: [PATCH] fix small display bug with dropdown atom --- pd/nw/pdgui.js | 8 ++++---- pd/src/g_text.c | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index a25c98463..f366d1321 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -2008,7 +2008,7 @@ function gui_atom_draw_border(cid, tag, type, width, height) { } } -function gui_atom_redraw_border(cid, tag, is_dropdown, width, height) { +function gui_atom_redraw_border(cid, tag, type, width, height) { var g = get_gobj(cid, tag), p, a; // Unfortunately Pd will send updates for gui objects that @@ -2022,12 +2022,12 @@ function gui_atom_redraw_border(cid, tag, is_dropdown, width, height) { // So we have to check for existence here... if (p) { configure_item(p, { - points: atom_border_points(width, height) + points: atom_border_points(width, height, type !== 0) }); - if (!!is_dropdown) { + if (type !== 0) { a = g.querySelectorAll("polygon")[1]; configure_item(a , { - points: atom_arrow_points(width, height) + points: atom_arrow_points(width, height), }); } } diff --git a/pd/src/g_text.c b/pd/src/g_text.c index d04d0fd94..d29b5c037 100644 --- a/pd/src/g_text.c +++ b/pd/src/g_text.c @@ -2744,7 +2744,8 @@ void text_drawborder(t_text *x, t_glist *glist, gui_vmess("gui_atom_redraw_border", "xsiii", glist_getcanvas(glist), tag, - pd_class(&x->te_pd) == dropdown_class ? 1 : 0, + pd_class(&x->te_pd) == dropdown_class ? + ((t_dropdown *)x)->a_outtype + 1 : 0, x2 - x1, y2 - y1); } -- GitLab