Removed bin
This commit is contained in:
parent
55c7c8defd
commit
a24144bb18
2
.gitignore
vendored
2
.gitignore
vendored
@ -26,3 +26,5 @@ hs_err_pid*
|
||||
|
||||
*.xml
|
||||
*.iml
|
||||
|
||||
bin/
|
@ -1,2 +0,0 @@
|
||||
java -jar Minecraft-Server-Launcher.jar
|
||||
pause
|
@ -1,3 +0,0 @@
|
||||
Manifest-Version: 1.0
|
||||
Main-Class: Main
|
||||
|
@ -82,6 +82,7 @@ public class GUI {
|
||||
JPanel controlPanel = new JPanel();
|
||||
controlPanel.setBorder(new EmptyBorder(5, 5, 5, 5));
|
||||
GroupLayout controlLayout = new GroupLayout(controlPanel);
|
||||
GroupLayout controlLayout2 = new GroupLayout(controlPanel);
|
||||
controlPanel.setLayout(controlLayout);
|
||||
JLabel basicControls = customLabel("Basic controls");
|
||||
JButton sendStart = customButton("Start servers");
|
||||
@ -89,6 +90,9 @@ public class GUI {
|
||||
JButton backup = customButton("Backup");
|
||||
JButton viewConsole = customButton("View server consoles");
|
||||
JLabel profile = customLabel("Profile");
|
||||
JButton addProfile = customButton("+");
|
||||
JButton delProfile = customButton("-");
|
||||
JComboBox<String> profiles = new JComboBox<>(new String[]{"Default"});
|
||||
|
||||
controlLayout.setVerticalGroup(
|
||||
controlLayout.createSequentialGroup()
|
||||
@ -98,15 +102,12 @@ public class GUI {
|
||||
.addComponent(sendStart)
|
||||
.addComponent(sendStop)
|
||||
.addComponent(backup)
|
||||
.addComponent(viewConsole))
|
||||
.addGroup(controlLayout.createParallelGroup(GroupLayout.Alignment.BASELINE)
|
||||
.addComponent(profile)));
|
||||
.addComponent(viewConsole)));
|
||||
|
||||
controlLayout.setHorizontalGroup(
|
||||
controlLayout.createSequentialGroup()
|
||||
.addGroup(controlLayout.createParallelGroup(GroupLayout.Alignment.LEADING)
|
||||
.addComponent(basicControls)
|
||||
.addComponent(profile)
|
||||
.addComponent(sendStart))
|
||||
.addGroup(controlLayout.createParallelGroup(GroupLayout.Alignment.LEADING)
|
||||
.addComponent(sendStop))
|
||||
|
Loading…
Reference in New Issue
Block a user