Skip to content

Commit

Permalink
Fix progress bar boxes partially covered by realization widget
Browse files Browse the repository at this point in the history
This commit fixes the issue where the bottom of the progress bar label boxes got covered by the widget below.
  • Loading branch information
jonathan-eq committed Oct 21, 2024
1 parent cc24a89 commit 1315c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/gui/simulation/view/progress_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class ProgressWidget(QFrame):
def __init__(self) -> None:
QWidget.__init__(self)
self.setFixedHeight(60)
self.setFixedHeight(70)

self._vertical_layout = QVBoxLayout(self)
self._vertical_layout.setContentsMargins(0, 0, 0, 0)
Expand Down

0 comments on commit 1315c55

Please sign in to comment.