From 8793f1c69602f94b2bdbb933e0c2fb85aef1970e Mon Sep 17 00:00:00 2001 From: Axel Rafn Date: Fri, 12 Jul 2024 20:57:57 +0200 Subject: [PATCH] chore: Adjust width of Actions column in URLManager --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 89fc092..729aa10 100644 --- a/app.py +++ b/app.py @@ -82,7 +82,7 @@ class URLManager(QWidget): self.url_list.setHorizontalHeaderLabels(['URL', 'Date', 'Actions']) self.url_list.horizontalHeader().setSectionResizeMode(0, QHeaderView.Stretch) # Stretch first column self.url_list.setColumnWidth(1, 150) # Set fixed width for Date column - self.url_list.setColumnWidth(2, 150) # Set fixed width for Actions column + self.url_list.setColumnWidth(2, 100) # Set fixed width for Actions column self.layout.addWidget(self.url_list) self.setLayout(self.layout)