Merge branch 'resize-volume-columns' into develop

This commit is contained in:
Timmy Welch 2022-11-29 14:28:32 -08:00
commit b1436ee76e
No known key found for this signature in database
2 changed files with 15 additions and 3 deletions

View File

@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>893</width>
<height>476</height>
<width>950</width>
<height>480</height>
</rect>
</property>
<property name="windowTitle">

View File

@ -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)
@ -474,6 +476,16 @@ 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.contentsRect().width() - owidth
# 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()