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)