From 2d11f23cd9642b5641a9fb2589ee89d4e1198aa6 Mon Sep 17 00:00:00 2001 From: Lance Ewing Date: Sat, 30 Mar 2024 08:05:22 +0000 Subject: [PATCH] Small tweak to home screen icon label space. --- core/src/main/java/com/agifans/agile/HomeScreen.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/agifans/agile/HomeScreen.java b/core/src/main/java/com/agifans/agile/HomeScreen.java index 3a9614d..b706443 100644 --- a/core/src/main/java/com/agifans/agile/HomeScreen.java +++ b/core/src/main/java/com/agifans/agile/HomeScreen.java @@ -504,7 +504,7 @@ public Texture drawEmptyIcon(int iconWidth, int iconHeight) { private static final int ICON_IMAGE_WIDTH = 320; private static final int ICON_IMAGE_HEIGHT = 240; - private static final int ICON_LABEL_HEIGHT = 110; + private static final int ICON_LABEL_HEIGHT = 90; /** * Creates a button to represent the given AppConfigItem. @@ -585,7 +585,7 @@ public Button buildAppButton(AppConfigItem appConfigItem) { label.setFontScale(2f); label.setAlignment(Align.top); label.setWrap(false); - button.add(label).width(150).height(90).padTop(20); + button.add(label).width(150).height(90).padTop(15); button.setName(appConfigItem.getName()); button.addListener(appClickListener);