[FEM] increase size of generic solver task panel

- increase it to size of CCX panel to create more room for the log output
This commit is contained in:
Uwe
2022-08-09 03:23:12 +02:00
parent 4b861b1083
commit 7f23e793eb

View File

@@ -240,6 +240,9 @@ class ControlWidget(QtGui.QWidget):
# Solver status log
self._statusEdt = QtGui.QPlainTextEdit()
self._statusEdt.setReadOnly(True)
# for the log we need a certain height
# set it so to almost match the size of the CCX solver panel
self._statusEdt.setMinimumHeight(300)
# Elapsed time indicator
timeHeaderLbl = QtGui.QLabel(self.tr("Elapsed Time:"))