v0.3.1b: fixed a bug with centered toolbar and less than 4 quickslots

This commit is contained in:
Evan Debenham
2015-09-04 00:22:18 -04:00
parent 9c861427e3
commit a23ede9bbb
@@ -207,8 +207,11 @@ public class Toolbar extends Component {
//center = group but.. well.. centered, so all we need to do is pre-emptively set the right side further in.
case CENTER:
right = width - (width - btnWait.width() - btnSearch.width() - btnInventory.width() -
btnQuick[0].width() - btnQuick[1].width() - btnQuick[2].width() - btnQuick[3].width())/2;
float toolbarWidth = btnWait.width() + btnSearch.width() + btnInventory.width();
for(Button slot : btnQuick){
if (slot.visible) toolbarWidth += slot.width();
}
right = (width + toolbarWidth)/2;
case GROUP:
btnWait.setPos(right - btnWait.width(), y);