v0.8.1: added a border to the settings, languages, and back buttons

This commit is contained in:
Evan Debenham 2020-05-24 22:43:24 -04:00
parent 0b57fefa62
commit a9679057b3
3 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -104,13 +104,13 @@ public enum Icons {
icon.frame( icon.texture.uvRect( 64, 0, 78, 12 ) );
break;
case PREFS:
icon.frame( icon.texture.uvRect( 80, 0, 92, 12 ) );
icon.frame( icon.texture.uvRect( 80, 0, 94, 14 ) );
break;
case LANGS:
icon.frame( icon.texture.uvRect( 96, 0, 108, 9 ) );
icon.frame( icon.texture.uvRect( 96, 0, 110, 11 ) );
break;
case EXIT:
icon.frame( icon.texture.uvRect( 112, 0, 125, 9 ) );
icon.frame( icon.texture.uvRect( 112, 0, 127, 11 ) );
break;
case CLOSE:
icon.frame( icon.texture.uvRect( 0, 16, 11, 27 ) );

View File

@ -64,11 +64,11 @@ public class LanguageButton extends Button {
flashing = false;
switch(Messages.lang().status()){
case INCOMPLETE:
image.tint(1, 0, 0, .5f);
image.hardlight(1.5f, 0, 0);
flashing = true;
break;
case UNREVIEWED:
image.tint(1, .5f, 0, .5f);
image.hardlight(1.5f, 0.75f, 0f);
break;
}
}