Skip to content

Commit

Permalink
Merge pull request #1171 from Dorovich/master
Browse files Browse the repository at this point in the history
Fix frame splitting calculation
  • Loading branch information
dmb2 authored Feb 17, 2024
2 parents 1598e9d + b34347c commit 3b12700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tile-group.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 3b12700

Please sign in to comment.