Skip to content

Commit

Permalink
Fix clear all dialog title.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcglincy committed Jul 12, 2022
1 parent 9ec009d commit ba5e745
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.24.1

- Fix clear all dialog title.

# 0.24.0

- Embed theme config info with each theme-painted area in the Dungeon Draw journal entry. This means any custom theme area will be properly visible to all players.
Expand Down
2 changes: 1 addition & 1 deletion src/dungeonlayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export class DungeonLayer extends PlaceablesLayer {
throw new Error(`You do not have permission to clear all.`);
}
return Dialog.confirm({
title: game.i18n.localize("DD.ButtonTitleClear"),
title: game.i18n.localize("DD.ButtonTitleClearAll"),
content: `<p>${game.i18n.localize("DD.ClearAllDialogContent")}</p>`,
yes: () => this.dungeon?.deleteAll(),
});
Expand Down

0 comments on commit ba5e745

Please sign in to comment.