From 70dcb9768a082d5fa3d14de8327e982e7b9722b0 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Mon, 28 Nov 2022 15:28:47 -0800 Subject: [PATCH 1/5] Better resize columns in the VolumeSelectionWindow --- comictaggerlib/volumeselectionwindow.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/comictaggerlib/volumeselectionwindow.py b/comictaggerlib/volumeselectionwindow.py index f4bcd9a..c17da42 100644 --- a/comictaggerlib/volumeselectionwindow.py +++ b/comictaggerlib/volumeselectionwindow.py @@ -474,6 +474,13 @@ class VolumeSelectionWindow(QtWidgets.QDialog): self.twList.setSortingEnabled(True) self.twList.selectRow(0) self.twList.resizeColumnsToContents() + # Get the width of the issues, year and publisher columns + owidth = self.twList.columnWidth(1) + self.twList.columnWidth(2) + self.twList.columnWidth(3) + # Get the remaining width after they fill the tableWidget + rwidth = self.twList.width() - owidth + + # Default the tableWidget to truncate series names + self.twList.setColumnWidth(0, rwidth) def showEvent(self, event: QtGui.QShowEvent) -> None: self.perform_query() From ad7b2706506bd971d84a6c764fc8f602faf62aca Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Mon, 28 Nov 2022 15:34:15 -0800 Subject: [PATCH 2/5] Automatically resize the row height on the VolumeSelectionWindow --- comictaggerlib/volumeselectionwindow.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/comictaggerlib/volumeselectionwindow.py b/comictaggerlib/volumeselectionwindow.py index c17da42..21311dd 100644 --- a/comictaggerlib/volumeselectionwindow.py +++ b/comictaggerlib/volumeselectionwindow.py @@ -482,6 +482,9 @@ class VolumeSelectionWindow(QtWidgets.QDialog): # Default the tableWidget to truncate series names self.twList.setColumnWidth(0, rwidth) + # Resize row height so the whole series can still be seen + self.twList.resizeRowsToContents() + def showEvent(self, event: QtGui.QShowEvent) -> None: self.perform_query() if not self.ct_search_results: From 2860093b6f1663b4f11376a663ca33baf0ba636e Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Mon, 28 Nov 2022 20:54:24 -0800 Subject: [PATCH 3/5] Set the minimum row height to the default on VolumeSelectionWindow --- comictaggerlib/volumeselectionwindow.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/comictaggerlib/volumeselectionwindow.py b/comictaggerlib/volumeselectionwindow.py index 21311dd..772dc52 100644 --- a/comictaggerlib/volumeselectionwindow.py +++ b/comictaggerlib/volumeselectionwindow.py @@ -159,7 +159,9 @@ class VolumeSelectionWindow(QtWidgets.QDialog): # Load to retrieve settings self.talker_api = talker_api - self.twList.resizeColumnsToContents() + # Set the minimum row height to the default. + # this way rows will be more consistent when resizeRowsToContents is called + self.twList.verticalHeader().setMinimumSectionSize(self.twList.verticalHeader().defaultSectionSize()) self.twList.currentItemChanged.connect(self.current_item_changed) self.twList.cellDoubleClicked.connect(self.cell_double_clicked) self.btnRequery.clicked.connect(self.requery) From aab7e37bb23dff0d50a805f1455ae075dbe241b2 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Mon, 28 Nov 2022 20:55:50 -0800 Subject: [PATCH 4/5] Use contentsRect().width() instead of width --- comictaggerlib/volumeselectionwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comictaggerlib/volumeselectionwindow.py b/comictaggerlib/volumeselectionwindow.py index 772dc52..5a3e539 100644 --- a/comictaggerlib/volumeselectionwindow.py +++ b/comictaggerlib/volumeselectionwindow.py @@ -479,7 +479,7 @@ class VolumeSelectionWindow(QtWidgets.QDialog): # Get the width of the issues, year and publisher columns owidth = self.twList.columnWidth(1) + self.twList.columnWidth(2) + self.twList.columnWidth(3) # Get the remaining width after they fill the tableWidget - rwidth = self.twList.width() - owidth + rwidth = self.twList.contentsRect().width() - owidth # Default the tableWidget to truncate series names self.twList.setColumnWidth(0, rwidth) From 8eba44cce453c2079948ccee19778783f0f70884 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Tue, 29 Nov 2022 14:28:08 -0800 Subject: [PATCH 5/5] Increase default size of VolumeSelectionWindow --- comictaggerlib/ui/volumeselectionwindow.ui | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comictaggerlib/ui/volumeselectionwindow.ui b/comictaggerlib/ui/volumeselectionwindow.ui index 32a9be3..4812423 100644 --- a/comictaggerlib/ui/volumeselectionwindow.ui +++ b/comictaggerlib/ui/volumeselectionwindow.ui @@ -6,8 +6,8 @@ 0 0 - 893 - 476 + 950 + 480