mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Fix typo in loading overlay
This commit is contained in:
@@ -42,7 +42,7 @@ public class OnlineChatScreen extends FScreen implements IOnlineChatInterface {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
private void sendMessage() {
|
||||
String message = txtSendMessage.getText();
|
||||
if (message.isEmpty()) { return; }
|
||||
|
||||
@@ -48,7 +48,7 @@ public class OnlineLobbyScreen extends LobbyScreen implements IOnlineLobby {
|
||||
}
|
||||
|
||||
final boolean joinServer = url.length() > 0;
|
||||
final String caption = joinServer ? "Starting server..." : "Connecting to server...";
|
||||
final String caption = joinServer ? "Connecting to server..." : "Starting server...";
|
||||
LoadingOverlay.show(caption, new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
|
||||
Reference in New Issue
Block a user