From 3067651f8b85e5930107ac1a4194fa7c0530c75f Mon Sep 17 00:00:00 2001 From: alfrix Date: Thu, 12 Oct 2023 13:34:41 -0300 Subject: [PATCH] job_status: fix issue with thumbnail at low resolutions --- 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 3bd725cc..0db6dfa6 100644 --- a/panels/job_status.py +++ b/panels/job_status.py @@ -765,7 +765,7 @@ class Panel(ScreenPanel): width = self._screen.width * 0.9 height = self._screen.height / 4 else: - width = self._screen.width / 3 + width = self._screen.width * .25 height = self._gtk.content_height * 0.47 pixbuf = self.get_file_image(self.filename, width, height) logging.debug(self.filename)