From 0e08c6c6600f90f5288a9bb9939e4c658c1702f3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 25 Oct 2021 15:28:49 +0530 Subject: [PATCH] Fix a one pixel line not being drawn at the bottom edge of the fat and tall layouts --- kitty/layout/tall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/layout/tall.py b/kitty/layout/tall.py index 63121c6c9..d86a7f466 100644 --- a/kitty/layout/tall.py +++ b/kitty/layout/tall.py @@ -171,7 +171,7 @@ class Tall(Layout): if is_fat: xl, yl = yl, xl yield wg, xl, yl, True - size = (lgd.central.bottom if is_fat else lgd.central.right) - start + size = 1 + (lgd.central.bottom if is_fat else lgd.central.right) - start ylayout = self.variable_layout(all_windows, self.biased_map) for i, wg in enumerate(all_windows.iter_all_layoutable_groups()):