Skip to content

Commit

Permalink
Changed the name of the 'Add Game' icon png file, as the previous nam…
Browse files Browse the repository at this point in the history
…e didn't work with GWT/HTML5 for some reason.
  • Loading branch information
lanceewing committed Jan 29, 2024
1 parent e995feb commit 7d38e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/com/agifans/agile/HomeScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ public Button buildAppButton(AppConfigItem appConfigItem) {

Label label = null;
if ((appConfigItem.getDisplayName() == null) || appConfigItem.getDisplayName().trim().isEmpty()) {
if ("_ADD_GAME_".equals(appConfigItem.getGameId())) {
if ("ADD_GAME".equals(appConfigItem.getGameId())) {
label = new Label("Add Game", skin);
} else {
label = new Label("[empty]", skin);
Expand Down

0 comments on commit 7d38e5e

Please sign in to comment.