diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index db240259a11b7ea5d629a040ab1db5fa9dbb8edc..9b074b430a619ba28202d13124e24c3783f809bb 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -2008,8 +2008,11 @@ function atom_arrow_points(width, height) { function gui_atom_draw_border(cid, tag, type, width, height) { - var g = get_gobj(cid, tag), - polygon, arrow, m; + var g, polygon, arrow, m; + if (!patchwin[cid]) { + return; + } + g = get_gobj(cid, tag), polygon = create_item(cid, "polygon", { points: atom_border_points(width, height, type !== 0), fill: "none",