v0.3.1: removed the long press to search functionality from the examine button.

This commit is contained in:
Evan Debenham 2015-06-28 18:48:14 -04:00 committed by Evan Debenham
parent cac8a6a675
commit f1bece816f

View File

@ -83,8 +83,6 @@ public class Toolbar extends Component {
Dungeon.hero.rest(false); Dungeon.hero.rest(false);
} }
;
protected boolean onLongClick() { protected boolean onLongClick() {
Dungeon.hero.rest(true); Dungeon.hero.rest(true);
return true; return true;
@ -104,11 +102,6 @@ public class Toolbar extends Component {
Dungeon.hero.search(true); Dungeon.hero.search(true);
} }
} }
protected boolean onLongClick() {
Dungeon.hero.search(true);
return true;
}
}); });
btnQuick = new Tool[4]; btnQuick = new Tool[4];