From bad3e897a17dbd55c5c635ddce0f3849c4818c53 Mon Sep 17 00:00:00 2001 From: pax Date: Tue, 7 Apr 2026 17:14:27 -0500 Subject: [PATCH] =?UTF-8?q?Drop=20Size:=20WxH=20line=20from=20InfoPanel=20?= =?UTF-8?q?=E2=80=94=20bookmarks/library=20never=20had=20width/height=20pl?= =?UTF-8?q?umbed=20and=20just=20showed=200x0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- booru_viewer/gui/app.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/booru_viewer/gui/app.py b/booru_viewer/gui/app.py index 7b1faa9..14ddbca 100644 --- a/booru_viewer/gui/app.py +++ b/booru_viewer/gui/app.py @@ -209,14 +209,12 @@ class InfoPanel(QWidget): source_html = source_display from html import escape self._details.setText( - f"Size: {post.width}x{post.height}\n" f"Score: {post.score}\n" f"Rating: {post.rating or 'unknown'}\n" f"Filetype: {filetype}" ) self._details.setTextFormat(Qt.TextFormat.RichText) self._details.setText( - f"Size: {post.width}x{post.height}
" f"Score: {post.score}
" f"Rating: {escape(post.rating or 'unknown')}
" f"Filetype: {filetype}
"