Skip to content

Commit

Permalink
Small tweak to the page indicator dot opacity.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanceewing committed Apr 3, 2024
1 parent f2bc786 commit 16990c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/com/agifans/agile/ui/PaginationWidget.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ public void draw(Batch batch, float parentAlpha) {

for (int pageNum=0; pageNum < numOfPages; pageNum++) {
if (pageNum == currentPage) {
pixmap.setColor(1.0f, 1.0f, 1.0f, 0.3f);
pixmap.setColor(1.0f, 1.0f, 1.0f, 0.4f);
} else {
pixmap.setColor(1.0f, 1.0f, 1.0f, 0.1f);
pixmap.setColor(1.0f, 1.0f, 1.0f, 0.2f);
}
pixmap.fillCircle(
((width / 2) - (totalCirclesWidth / 2)) + CIRCLE_RADIUS +
Expand Down

0 comments on commit 16990c4

Please sign in to comment.