Skip to content

Commit

Permalink
Only have one label for analysis steplengths
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed Nov 20, 2023
1 parent 7f6fc69 commit 9ddc925
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/ert/gui/ertwidgets/analysismodulevariablespanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,9 @@ def __init__(self, analysis_module: AnalysisModule, ensemble_size: int):
),
)

lab = QLabel(analysis_module.__doc__)
lab.setStyleSheet(
"font-style: italic; font-size: 10pt; font-weight: 300"
)
layout.addRow(lab)
lab = QLabel(analysis_module.__doc__)
lab.setStyleSheet("font-style: italic; font-size: 10pt; font-weight: 300")
layout.addRow(lab)

layout.addRow(self.create_horizontal_line())

Expand Down

0 comments on commit 9ddc925

Please sign in to comment.