Skip to content

Commit

Permalink
Fixed min height of skin and animation select boxes.
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanSweet committed Apr 7, 2017
1 parent 0b514ea commit 160c491
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ void layout () {
root.add("Setup pose:");
root.add(table(bonesSetupPoseButton, slotsSetupPoseButton, setupPoseButton)).row();
root.add("Skin:");
root.add(skinScroll).expand().fill().row();
root.add(skinScroll).expand().fill().minHeight(64).row();

root.add(new Image(skin.newDrawable("white", new Color(0x4e4e4eff)))).height(1).fillX().colspan(2).pad(1, 0, 1, 0).row();

Expand All @@ -520,7 +520,7 @@ void layout () {
root.add(table).fill().row();
}
root.add("Animation:");
root.add(animationScroll).expand().fill().row();
root.add(animationScroll).expand().fill().minHeight(64).row();
root.add("Speed:");
{
Table table = table();
Expand Down

0 comments on commit 160c491

Please sign in to comment.