From 90721786a274cf3b2b84d85e4f7c355f7d820cdc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 30 Dec 2020 19:23:58 -0500 Subject: [PATCH] v0.9.1b: added icons to buttons in the rankings window --- .../shatteredpixeldungeon/windows/WndRanking.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndRanking.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndRanking.java index 17f192c4d..b01066553 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndRanking.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndRanking.java @@ -186,6 +186,7 @@ public class WndRanking extends WndTabbed { }); } }; + btnTalents.icon(Icons.get(Icons.TALENT)); btnTalents.setRect( (WIDTH - btnTalents.reqWidth()+2)/2, pos, btnTalents.reqWidth()+2 , 16 ); add(btnTalents); @@ -199,6 +200,7 @@ public class WndRanking extends WndTabbed { } }; + btnChallenges.icon(Icons.get(Icons.CHALLENGE_ON)); btnChallenges.setSize( btnChallenges.reqWidth()+2, 16 ); add( btnChallenges );