mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-03 22:25:57 +00:00
Fix a one pixel line not being drawn at the bottom edge of the fat and tall layouts
This commit is contained in:
parent
6da79ab614
commit
0e08c6c660
1 changed files with 1 additions and 1 deletions
|
|
@ -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()):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue