From ae03e7d55d71ff0a45a407589c9db4590999a823 Mon Sep 17 00:00:00 2001 From: alfrix Date: Wed, 19 Jul 2023 15:01:53 -0300 Subject: [PATCH] job_status: fix screen overflow on small screens --- panels/job_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/job_status.py b/panels/job_status.py index f6ba470c..45d8faf1 100644 --- a/panels/job_status.py +++ b/panels/job_status.py @@ -156,7 +156,7 @@ class JobStatusPanel(ScreenPanel): self.buttons.update(buttons) self.labels['temp_grid'] = Gtk.Grid() - nlimit = 2 if self._screen.width <= 480 else 3 + nlimit = 2 if self._screen.width <= 500 else 3 n = 0 self.buttons['extruder'] = {} if self._printer.get_tools():