v1.2.0: fixed a sizing error with news icon, and tweaked display icons

This commit is contained in:
Evan Debenham 2022-03-11 15:39:22 -05:00
parent adb7df68a6
commit 542eae1bef
2 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -131,7 +131,7 @@ public enum Icons {
icon.frame( icon.texture.uvRectBySize( 51, 0, 16, 16 ) );
break;
case NEWS:
icon.frame( icon.texture.uvRectBySize( 68, 0, 15, 15 ) );
icon.frame( icon.texture.uvRectBySize( 68, 0, 16, 15 ) );
break;
case CHANGES:
icon.frame( icon.texture.uvRectBySize( 85, 0, 15, 15 ) );
@ -164,9 +164,9 @@ public enum Icons {
break;
case DISPLAY:
if (!PixelScene.landscape()){
icon.frame( icon.texture.uvRectBySize( 16, 32, 13, 16 ) );
icon.frame( icon.texture.uvRectBySize( 16, 32, 12, 16 ) );
} else {
icon.frame( icon.texture.uvRectBySize( 32, 32, 16, 13 ) );
icon.frame( icon.texture.uvRectBySize( 32, 32, 16, 12 ) );
}
break;
case DATA: