less text padding in simplebutton, rename sbv2 ease middle button

This commit is contained in:
yugecin 2016-12-25 16:30:30 +01:00
parent 2b5ee7d8b8
commit 0f0695c34a
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ public class MoveStoryboard {
btnAddQuadratic = new SimpleButton(width - 205, 80, 200, 25, Fonts.SMALL, "add quadratic", Colors.BLUE_BUTTON, Colors.WHITE_FADE, Colors.WHITE_FADE, Colors.ORANGE_BUTTON);
btnAddCubic = new SimpleButton(width - 205, 110, 200, 25, Fonts.SMALL, "add cubic", Colors.BLUE_BUTTON, Colors.WHITE_FADE, Colors.WHITE_FADE, Colors.ORANGE_BUTTON);
btnAnimLin = new SimpleButton(width - 250, 50, 40, 25, Fonts.SMALL, "lin", Color.blue, Color.white, Color.white, Color.orange);
btnAnimMid = new SimpleButton(width - 250, 80, 40, 25, Fonts.SMALL, "cir", Color.blue, Color.white, Color.white, Color.orange);
btnAnimMid = new SimpleButton(width - 250, 80, 40, 25, Fonts.SMALL, "mid", Color.blue, Color.white, Color.white, Color.orange);
btnAnimCub = new SimpleButton(width - 250, 110, 40, 25, Fonts.SMALL, "cub", Color.blue, Color.white, Color.white, Color.orange);
dummyMove = (StoryboardMove) Proxy.newProxyInstance(StoryboardMove.class.getClassLoader(), new Class<?>[]{StoryboardMove.class}, new InvocationHandler() {
@Override

View File

@ -52,7 +52,7 @@ public class SimpleButton {
g.setColor(bg);
g.fillRect(hitbox.x, hitbox.y, hitbox.width, hitbox.height);
g.setColor(fg);
font.drawString(hitbox.x + 20, textY, text);
font.drawString(hitbox.x + 5, textY, text);
if (isHovered) {
g.setColor(hoverBorder);
} else {