v0.3.0: improved buff tapping for small screens

This commit is contained in:
Evan Debenham
2015-04-08 00:23:12 -04:00
parent 77c4a7f6ce
commit b2f5fd6123
3 changed files with 7 additions and 7 deletions
@@ -117,7 +117,7 @@ public class BuffIndicator extends Component {
for (Buff buff : ch.buffs()) {
if (buff.icon() != NONE) {
BuffIcon icon = new BuffIcon( buff );
icon.setRect(x + members.size() * (SIZE + 2), y, 7, 7);
icon.setRect(x + members.size() * (SIZE + 2), y, 9, 12);
add(icon);
newIcons.put( buff.icon(), icon );
}
@@ -159,8 +159,8 @@ public class BuffIndicator extends Component {
@Override
protected void layout() {
super.layout();
icon.x = this.x;
icon.y = this.y;
icon.x = this.x+1;
icon.y = this.y+2;
}
@Override