From 85a7f24a2af4fa2715e14a991aaf189ed26a84b9 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic Date: Thu, 8 Oct 2020 16:56:04 -0400 Subject: [PATCH] Fine-tuned the dropdown dialog window size * Used to have no margin on the right. Now it does and it matches the left side. --- pd/nw/pdgui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index 0d866aeb4..a9a6ec665 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -5810,7 +5810,7 @@ function gui_dropdown_dialog(did, attr_array) { // Just reuse the "gatom" dialog (this is not true anymore, see below) // ico@vt.edu 2020-08-21: made this into a separate dialog due to inability to easily retitle // the window - dialogwin[did] = create_window(did, "dropdown", 222, 268-5, + dialogwin[did] = create_window(did, "dropdown", 228, 268-5, popup_coords[2], popup_coords[3], attr_array_to_object(attr_array)); // ico@vt.edu 2020-08-21: the following does not work because the window is not created yet?