From 193c1c38f6c544c5d2b0272d99f0857965b5e006 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Mon, 25 Apr 2016 20:44:34 -0400
Subject: [PATCH] protect gui_image_coords against Pd->GUI calls that happen
 before the window gets mapped This can happen when one of ggee/image's
 display methods is called from a [loadbang]

---
 pd/nw/pdgui.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js
index 87d53c904..4397dc95c 100644
--- a/pd/nw/pdgui.js
+++ b/pd/nw/pdgui.js
@@ -3024,7 +3024,9 @@ function gui_image_configure(cid, tag, image_key, tk_anchor) {
 
 // Move an image
 function gui_image_coords(cid, tag, x, y) {
-    elem_move(get_gobj(cid, tag), x, y);
+    if (patchwin[cid]) {
+        elem_move(get_gobj(cid, tag), x, y);
+    }
 }
 
 function add_popup(cid, popup) {
-- 
GitLab