Revert stretching last section in Result window

* It seems that stretching the last section automatically is a bit inconvenient on MacOS as it will grow beyond the window border.
* Keep it as it was before for now until a better solution is devised.
This commit is contained in:
glubsy 2020-08-01 18:42:46 +02:00
parent 3be1ee87c6
commit 056fa819cc
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ class ResultWindow(QMainWindow):
h = self.resultsView.horizontalHeader()
h.setHighlightSections(False)
h.setSectionsMovable(True)
h.setStretchLastSection(True)
h.setStretchLastSection(False)
h.setDefaultAlignment(Qt.AlignLeft)
self.verticalLayout.addWidget(self.resultsView)
self.setCentralWidget(self.centralwidget)