Skip to content

Commit

Permalink
Add space before "Server" in the toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Mar 22, 2024
1 parent 3f9e3e6 commit 08f1321
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/studio/core/AuthenticationManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public class AuthenticationManager {
private static AuthenticationManager instance;
private Map classMap = new HashMap();

public Class lookup(String autheticationMethod) {
return (Class) classMap.get(autheticationMethod);
public Class lookup(String authenticationMethod) {
return (Class) classMap.get(authenticationMethod);
}

public String[] getAuthenticationMechanisms() {
Expand Down
1 change: 1 addition & 0 deletions src/studio/ui/StudioWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -1156,6 +1156,7 @@ public void focusLost(FocusEvent e) {
refreshServerList();
refreshServer();

toolbar.add(Box.createRigidArea(new Dimension(3,0)));
toolbar.add(new JLabel(I18n.getString("Server")));
toolbar.add(comboServer);
toolbar.add(txtServer);
Expand Down

0 comments on commit 08f1321

Please sign in to comment.