Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmipt committed Jan 5, 2024
1 parent c4d1d95 commit c79bb10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/studio/ui/StudioWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ private void initActions() {
Server newServer = f.getServer();
CONFIG.addServer(newServer);
setServer(newServer);
rerfreshAll();
refreshAll();
}
});

Expand All @@ -574,7 +574,7 @@ private void initActions() {
Server s = f.getServer();
CONFIG.addServer(s);
setServer(s);
rerfreshAll();
refreshAll();
}
});

Expand All @@ -597,7 +597,7 @@ private void initActions() {
if (servers.length > 0)
setServer(servers[0]);

rerfreshAll();
refreshAll();
}
});

Expand Down Expand Up @@ -845,7 +845,7 @@ public void close() {

}

public static void rerfreshAll() {
public static void refreshAll() {
for (StudioWindow window: allWindows) {
window.refreshMenu();
window.refreshServerList();
Expand Down Expand Up @@ -926,7 +926,7 @@ private void refreshMenu() {
clone = f.getServer();
CONFIG.addServer(clone);
setServer(clone);
rerfreshAll();
refreshAll();
}
});

Expand Down

0 comments on commit c79bb10

Please sign in to comment.