Skip to content

Commit

Permalink
[FEM] increase size of generic solver task panel
Browse files Browse the repository at this point in the history
- increase it to size of CCX panel to create more room for the log output
  • Loading branch information
donovaly committed Aug 9, 2022
1 parent 4b861b1 commit 7f23e79
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Mod/Fem/femsolver/solver_taskpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ def _setupUi(self):
# 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:"))
Expand Down

0 comments on commit 7f23e79

Please sign in to comment.