From b34347ce9056f5e53161a3fda42692c9102071f4 Mon Sep 17 00:00:00 2001 From: Dorovich Date: Sun, 24 Dec 2023 18:57:19 +0100 Subject: [PATCH] fix frame splitting ratio pixels --- tile-group.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tile-group.lisp b/tile-group.lisp index ec696c70..0d134ec5 100644 --- a/tile-group.lisp +++ b/tile-group.lisp @@ -564,7 +564,7 @@ T (default) then also focus the frame." If ratio is an integer return the number of pixel desired." (if (integerp ratio) ratio - (* length ratio))) + (round (* length ratio)))) (defun funcall-on-leaf (tree leaf fn) "Return a new tree with LEAF replaced with the result of calling FN on LEAF."