We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e64db8 commit 99d0204Copy full SHA for 99d0204
src/main/java/de/albritter/gui/Window.java
@@ -43,6 +43,7 @@ public class Window extends JFrame {
43
44
public Window() {
45
super("Login");
46
+ setDefaultCloseOperation(3);
47
setSize(new Dimension(320, 210));
48
setMinimumSize(new Dimension(300, 200));
49
GridBagLayout gridBagLayout = new GridBagLayout();
@@ -255,5 +256,11 @@ public void removeProfileCurrent() {
255
256
System.out.println("index");
257
}
258
Options.getInstance().removeProfile(p);
259
+ proflist = Options.getInstance().loadProfiles();
260
+ Set<Integer> keys = proflist.keySet();
261
+ comboServer.removeAllItems();
262
+ for (int i : keys) {
263
+ comboServer.addItem(proflist.get(i).getServer());
264
+ }
265
266
0 commit comments