From dbfa07f0595917a9e1c023a486bfbb8e0c49b590 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 25 Nov 2023 18:59:22 -0800 Subject: [PATCH] bugfix: code overflowing lower border after resize --- 0031-on.resize | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0031-on.resize b/0031-on.resize index ad334f0..b0f4b34 100644 --- a/0031-on.resize +++ b/0031-on.resize @@ -6,7 +6,7 @@ on.resize = function() pane.editor_state.right = pane.editor_state.left+1 end pane.editor_state.width = pane.editor_state.right - pane.editor_state.left - pane.editor_state.bottom = Safe_height/2-5 + pane.editor_state.bottom = Safe_height/2-Line_height Text.redraw_all(pane.editor_state) update_output_editor(pane) end