From 5fb0acc3ac816d8d21277a4882fa34238f8487dd Mon Sep 17 00:00:00 2001 From: alfrix Date: Sun, 25 Jun 2023 13:14:15 -0300 Subject: [PATCH] keyboard: tweak box size --- screen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/screen.py b/screen.py index 50c7d17e..580b6fe6 100755 --- a/screen.py +++ b/screen.py @@ -913,6 +913,7 @@ class KlipperScreen(Gtk.Window): box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) box.set_size_request(self.gtk.content_width, self.gtk.keyboard_height) + box.set_vexpand(False) if self._config.get_main_config().getboolean("use-matchbox-keyboard", False): return self._show_matchbox_keyboard(box)