Skip to content

Commit

Permalink
Fix CK2 titles menu
Browse files Browse the repository at this point in the history
  • Loading branch information
mmyers committed Jun 15, 2024
1 parent 1bae54c commit a2fd1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EU3_Scenario_Editor/src/editor/EditorUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ private void addFilters() {
} else if (view.equals("titles")) {
JMenu menu = new JMenu("Titles");
for (TitleMode.TitleType t : TitleMode.TitleType.values())
viewMenu.add(new TitleFilterAction(t));
menu.add(new TitleFilterAction(t));
viewMenu.add(menu);
} else if (view.equals("de-jure-titles")) {
JMenu menu = new JMenu("De Jure Titles");
Expand Down

0 comments on commit a2fd1ed

Please sign in to comment.