Skip to content

Commit

Permalink
Change default experiment/ensemble to new_experiment/ensemble
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Sep 19, 2024
1 parent 0d05ac5 commit ce4149b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ert/gui/ertwidgets/create_experiment_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(
self._experiment_edit = StringBox(
TextModel(""),
placeholder_text=notifier.storage.get_unique_experiment_name(
"My_experiment"
"new_experiment"
),
minimum_width=200,
)
Expand All @@ -49,7 +49,7 @@ def __init__(
ensemble_label = QLabel("Ensemble name:")
self._ensemble_edit = StringBox(
TextModel(""),
placeholder_text=notifier.storage.get_unique_experiment_name("My_ensemble"),
placeholder_text=notifier.storage.get_unique_experiment_name("ensemble"),
minimum_width=200,
)
self._ensemble_edit.setValidator(ProperNameArgument())
Expand Down

0 comments on commit ce4149b

Please sign in to comment.