From c9d8a8661caca346a2e0a9e069e7e701fca3e372 Mon Sep 17 00:00:00 2001 From: Silvris <58583688+Silvris@users.noreply.github.com> Date: Tue, 1 Apr 2025 11:06:49 -0500 Subject: [PATCH] kvui: Fix hint tab formatting regression (#4778) Co-authored-by: Fabian Dill --- kvui.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kvui.py b/kvui.py index 60042b00..36162072 100644 --- a/kvui.py +++ b/kvui.py @@ -817,6 +817,12 @@ class HintLayout(BoxLayout): boxlayout.add_widget(AutocompleteHintInput()) self.add_widget(boxlayout) + def fix_heights(self): + for child in self.children: + fix_func = getattr(child, "fix_heights", None) + if fix_func: + fix_func() + status_names: typing.Dict[HintStatus, str] = { HintStatus.HINT_FOUND: "Found",