Skip to content

Commit

Permalink
fix: menus not reliably reserving space for footnotes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasklaen committed Sep 4, 2024
1 parent 55afdf3 commit 3ee3d47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/uosc/elements/Menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,8 @@ function Menu:update_dimensions()
local width = math.max(menu.search and menu.search.max_width or 0, menu.max_width)
menu.width = round(clamp(min_width, width, width_available))
local title_height = (menu.is_root and menu.title or menu.search) and self.scroll_step + self.padding or 0
local max_height = height_available - title_height - (menu.footnote and self.font_size * 1.5 or 0)
local footnote_height = self.font_size * 1.5
local max_height = height_available - title_height - footnote_height
local content_height = self.scroll_step * #menu.items
menu.height = math.min(content_height - self.item_spacing, max_height)
menu.top = clamp(
Expand Down

0 comments on commit 3ee3d47

Please sign in to comment.