mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
Standardize padding between quest and gauntlet screens
This commit is contained in:
@@ -151,7 +151,7 @@ public class LoadConquestScreen extends LaunchScreen {
|
||||
float y = startY + 2 * PADDING;
|
||||
lblOldConquests.setBounds(0, y, width, lblOldConquests.getPreferredHeight(width));
|
||||
y += lblOldConquests.getHeight() + PADDING;
|
||||
lstConquests.setBounds(0, y, width, height - y - buttonHeight - 2 * PADDING);
|
||||
lstConquests.setBounds(0, y, width, height - y - buttonHeight - PADDING);
|
||||
y += lstConquests.getHeight() + PADDING;
|
||||
|
||||
float x = 0;
|
||||
|
||||
@@ -152,7 +152,7 @@ public class LoadQuestScreen extends LaunchScreen {
|
||||
float y = startY + 2 * PADDING;
|
||||
lblOldQuests.setBounds(0, y, width, lblOldQuests.getPreferredHeight(width));
|
||||
y += lblOldQuests.getHeight() + PADDING;
|
||||
lstQuests.setBounds(0, y, width, height - y - buttonHeight - 2 * PADDING);
|
||||
lstQuests.setBounds(0, y, width, height - y - buttonHeight - PADDING);
|
||||
y += lstQuests.getHeight() + PADDING;
|
||||
|
||||
float x = 0;
|
||||
|
||||
Reference in New Issue
Block a user