From 1bfb054be2dc2d9675334e95229d25a51b6715f9 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 10 Sep 2025 16:31:54 +0900 Subject: [PATCH] fix: ease padding on mod table --- helpers/ui.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/helpers/ui.py b/helpers/ui.py index a6afa08..0eb88ad 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -3155,7 +3155,13 @@ class ModDialog(GenericDialog): column.set_sizing(Gtk.TreeViewColumnSizing.FIXED) self.view.append_column(column) column.set_sort_column_id(i) - column.set_fixed_width(350) + match column_title: + case "Mod": + column.set_fixed_width(350) + case "ID": + column.set_fixed_width(200) + case _: + pass dialogBox.pack_end(self.scrollable, True, True, 0) wait_dialog = GenericDialog("Fetching modlist", Popup.WAIT)