diff --git a/core/src/main/assets/interfaces/icons.png b/core/src/main/assets/interfaces/icons.png index 63fe09623..fd10f873e 100644 Binary files a/core/src/main/assets/interfaces/icons.png and b/core/src/main/assets/interfaces/icons.png differ diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java index 9c1132aec..0615c08d4 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/Icons.java @@ -85,6 +85,7 @@ public enum Icons { ENERGY, COPY, PASTE, + CATALOG, COIN_SML, ENERGY_SML, BACKPACK, @@ -279,26 +280,29 @@ public enum Icons { case PASTE: icon.frame( icon.texture.uvRectBySize( 240, 48, 13, 13 ) ); break; + case CATALOG: + icon.frame( icon.texture.uvRectBySize( 240, 64, 13, 16 ) ); + break; case COIN_SML: - icon.frame( icon.texture.uvRectBySize( 192, 64, 7, 7 ) ); + icon.frame( icon.texture.uvRectBySize( 192, 80, 7, 7 ) ); break; case ENERGY_SML: - icon.frame( icon.texture.uvRectBySize( 192, 72, 8, 7 ) ); + icon.frame( icon.texture.uvRectBySize( 192, 88, 8, 7 ) ); break; case BACKPACK: - icon.frame( icon.texture.uvRectBySize( 201, 64, 10, 10 ) ); + icon.frame( icon.texture.uvRectBySize( 201, 80, 10, 10 ) ); break; case SCROLL_HOLDER: - icon.frame( icon.texture.uvRectBySize( 211, 64, 10, 10 ) ); + icon.frame( icon.texture.uvRectBySize( 211, 80, 10, 10 ) ); break; case SEED_POUCH: - icon.frame( icon.texture.uvRectBySize( 221, 64, 10, 10 ) ); + icon.frame( icon.texture.uvRectBySize( 221, 80, 10, 10 ) ); break; case WAND_HOLSTER: - icon.frame( icon.texture.uvRectBySize( 231, 64, 10, 10 ) ); + icon.frame( icon.texture.uvRectBySize( 231, 80, 10, 10 ) ); break; case POTION_BANDOLIER: - icon.frame( icon.texture.uvRectBySize( 241, 64, 10, 10 ) ); + icon.frame( icon.texture.uvRectBySize( 241, 80, 10, 10 ) ); break; case TARGET: diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java index f72a81167..daacf2fbf 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndJournal.java @@ -137,7 +137,7 @@ public class WndJournal extends WndTabbed { if (value) last_index = 2; } }, - new IconTab( Icons.RENAME_ON.get() ) { //TODO dedicated icon here? + new IconTab( Icons.CATALOG.get() ) { protected void select( boolean value ) { super.select( value ); catalogTab.active = catalogTab.visible = value;