Skip to content

Commit

Permalink
Small text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mmyers committed Jun 18, 2024
1 parent 3d602b9 commit ce8e6d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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 @@ -2361,7 +2361,7 @@ public TitleFilterAction(TitleMode.TitleType type) {
private class DeJureTitleFilterAction extends FilterAction {
public DeJureTitleFilterAction(DeJureTitleMode.TitleType type) {
super("De Jure " + type.getName() + " Titles", new DeJureTitleMode(mapPanel, type));
putValue(SHORT_DESCRIPTION, type.getName() + " Titles");
putValue(SHORT_DESCRIPTION, "De Jure " + type.getName() + " Titles");
}
}

Expand Down
4 changes: 2 additions & 2 deletions EU3_Scenario_Editor/src/editor/MultiFileEditorDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public MultiFileEditorDialog(Frame parent, List<ProvinceData.Province> provinces
this.countryTags = null;
this.countryNames = null;

setOriginalContents("# Anything typed here will be added to all selected province history files");
setOriginalContents("");

createTopBar();
}
Expand All @@ -131,7 +131,7 @@ private MultiFileEditorDialog(Frame parent, List<String> countryTags, List<Strin
this.countryTags = countryTags;
this.countryNames = countryNames;

setOriginalContents("# Anything typed here will be added to all selected country history files");
setOriginalContents("");

createTopBar();
}
Expand Down

0 comments on commit ce8e6d3

Please sign in to comment.