From e5b33e9642b37a18faf6fa4c2d2011ff02e2abca Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Tue, 1 Sep 2020 12:13:41 -0400 Subject: [PATCH] *minor tweak to activated gop textbox sizing --- 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 e91e9fae7..b9d3e4d12 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -6119,7 +6119,7 @@ function gui_textarea(cid, tag, type, x, y, width_spec, height_spec, text, (width_spec < 0 ? (-width_spec) - 2 + "px" : width_spec + "ch"))); if (is_gop == 1) { - p.style.setProperty("min-height", height_spec - 5 + "px"); + p.style.setProperty("min-height", height_spec - 4 + "px"); } // set backgroundimage for message box if (type === "msg") { -- GitLab