Moved multiple mixing checkbox.

This commit is contained in:
Nathan Sweet 2017-03-26 09:17:42 +09:00
parent b4e927f539
commit 6c2ec1b46b

View File

@ -526,8 +526,6 @@ public class SkeletonViewer extends ApplicationAdapter {
table.add(speedResetButton); table.add(speedResetButton);
root.add(table).fill().row(); root.add(table).fill().row();
} }
root.add();
root.add(multipleMixingCheckbox).row();
root.add("Default mix:"); root.add("Default mix:");
{ {
Table table = table(); Table table = table();
@ -535,6 +533,8 @@ public class SkeletonViewer extends ApplicationAdapter {
table.add(mixSlider).fillX().expandX(); table.add(mixSlider).fillX().expandX();
root.add(table).fill().row(); root.add(table).fill().row();
} }
root.add();
root.add(multipleMixingCheckbox).row();
window.add(root).expand().fill(); window.add(root).expand().fill();
window.pack(); window.pack();