Skip to content

Commit

Permalink
Adjusting pagination height to match new icon size.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanceewing committed Apr 3, 2024
1 parent 48c7981 commit 58ad90b
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 @@ -327,7 +327,7 @@ private void addAppButtonsToStage(Stage stage, PaginationWidget paginationWidget
container.add(pagedScrollPane).expand().fill();

container.row();
container.add(paginationWidget).maxHeight(80).minHeight(80);
container.add(paginationWidget).maxHeight(PAGINATION_HEIGHT).minHeight(PAGINATION_HEIGHT);
stage.addActor(paginationWidget);
}

Expand Down

0 comments on commit 58ad90b

Please sign in to comment.