Fixed Typo in Deck Importer Win title

Signed-off-by: leriomaggio <valeriomaggio@gmail.com>
This commit is contained in:
leriomaggio
2021-09-06 02:06:42 +01:00
parent 8e5df641c4
commit 544b7af746
2 changed files with 2 additions and 2 deletions

View File

@@ -206,7 +206,7 @@ public class DeckImport<TItem extends InventoryItem, TModel extends DeckBase> ex
this.setPreferredSize(new Dimension(wWidth, wHeight));
this.setSize(wWidth, wHeight);
String gameTypeName = String.format("For the Game %s", currentGameType.name());
String gameTypeName = String.format(" %s", currentGameType.name());
this.setTitle(Localizer.getInstance().getMessage("lblDeckImporter") + gameTypeName);
txtInput.setFocusable(true);