From aa6e77fb7ea651644ef364596a586d60ffdc3959 Mon Sep 17 00:00:00 2001
From: Sojourner Truth <jon.w.wilkes@gmail.com>
Date: Wed, 24 Aug 2016 00:12:27 -0400
Subject: [PATCH] fix for issue #109: clicking apply in Array Properties dialog
 adds a new copy: we just hide the "apply" button

---
 pd/nw/dialog_canvas.html | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/pd/nw/dialog_canvas.html b/pd/nw/dialog_canvas.html
index 7617429a9..f937a734d 100644
--- a/pd/nw/dialog_canvas.html
+++ b/pd/nw/dialog_canvas.html
@@ -276,7 +276,7 @@
       <button type="button" id="ok_button" onClick="ok()" data-i18n="[title]iem.prop.ok_tt">
         <span data-i18n="iem.prop.ok"></span>
       </button>
-      <button type="button" onClick="apply()" data-i18n="[title]iem.prop.apply_tt">
+      <button type="button" id="apply_button" onClick="apply()" data-i18n="[title]iem.prop.apply_tt">
         <span data-i18n="iem.prop.apply"></span>
       </button>
       <button type="button" onClick="cancel()" data-i18n="[title]iem.prop.close_tt">
@@ -657,6 +657,10 @@ function register_window_id(gfxstub, attr_objects) {
         for (i = 0; i < canvas_fieldsets.length; i++) {
             canvas_fieldsets[i].classList.add("hidden");
         }
+        // Hide the "Apply" button, as it doesn't make sense for
+        // creating a new array
+        document.getElementById("apply_button").style.setProperty("display",
+            "none");
     } else {
         pd_garray_attrs = attr_objects.slice(1);
         new_array_dialog = false; // this is a canvas/array props dialog
@@ -666,8 +670,8 @@ function register_window_id(gfxstub, attr_objects) {
 
     // We don't turn on rendering of the "container" div until
     // We've finished displaying all the spans and populating the
-    // labels and form elements.  That makes it more efficient and
-    // snappier, at least on older machines.
+    // labels and form elements.  That makes it snappier, at least
+    // on older machines.
     document.getElementsByClassName("container")[0].style.setProperty("display", "inline");
     pdgui.resize_window(pd_object_callback);
 }
-- 
GitLab