Skip to content

Commit

Permalink
Make filters sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-el committed Sep 11, 2024
1 parent d7c3f4d commit 671f58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/gui/tools/plot/filter_popup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(
self.__layout.addWidget(QLabel("Filter by datatype:"))

filters = {k.metadata["data_origin"] for k in key_defs}
for f in filters:
for f in sorted(filters):
self.addFilterItem(f, f)

if any(k.history_vector for k in key_defs):
Expand Down

0 comments on commit 671f58e

Please sign in to comment.