diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index a5c38a5fd4a8765d605d97f2a61b04adbd783272..71cca8438eae4e37c57b1a84a6bfee5f38e07981 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -1958,10 +1958,12 @@ function gui_message_redraw_border(cid, tag, width, height) { var g, b; if (patchwin[cid]) { g = get_gobj(cid, tag); - b = g.querySelector(".border"); - configure_item(b, { - points: message_border_points(width, height), - }); + if (g) { + b = g.querySelector(".border"); + configure_item(b, { + points: message_border_points(width, height), + }); + } } }