diff --git a/docs/changelog.rst b/docs/changelog.rst index 4a62b4913..d650ffb3e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -41,6 +41,9 @@ To update |kitty|, :doc:`follow the instructions `. :kbd:`ctrl+plus` will match a keyboard where you have to press :kbd:`shift+equal` to get the plus key (:iss:`2000`) +- Fix extra space at bottom of OS window when using the fat layout with the tab bar at the + top (:iss:`3258`) + 0.19.3 [2020-12-19] ------------------- diff --git a/kitty/layout/tall.py b/kitty/layout/tall.py index 0e5346251..1251b7880 100644 --- a/kitty/layout/tall.py +++ b/kitty/layout/tall.py @@ -169,7 +169,7 @@ class Tall(Layout): if is_fat: xl, yl = yl, xl yield wg, xl, yl, True - size = (lgd.central.height if is_fat else lgd.central.width) - start + size = (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()):