mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-25 21:26:43 +00:00
indicate if disconnected on startup, and display status with instruction on how to connect for longer
This commit is contained in:
parent
d2934c94c5
commit
14d0437424
2 changed files with 3 additions and 1 deletions
|
@ -2753,7 +2753,7 @@ public class AppController implements Initializable {
|
||||||
public void disconnection(DisconnectionEvent event) {
|
public void disconnection(DisconnectionEvent event) {
|
||||||
serverToggle.setDisable(false);
|
serverToggle.setDisable(false);
|
||||||
if(!AppServices.isConnecting() && !AppServices.isConnected() && !statusBar.getText().startsWith(CONNECTION_FAILED_PREFIX) && !statusBar.getText().contains(TRYING_ANOTHER_SERVER_MESSAGE)) {
|
if(!AppServices.isConnecting() && !AppServices.isConnected() && !statusBar.getText().startsWith(CONNECTION_FAILED_PREFIX) && !statusBar.getText().contains(TRYING_ANOTHER_SERVER_MESSAGE)) {
|
||||||
statusUpdated(new StatusEvent("Disconnected"));
|
statusUpdated(new StatusEvent("Disconnected (click toggle on the right to connect)", 240));
|
||||||
}
|
}
|
||||||
if(statusTimeline == null || statusTimeline.getStatus() != Animation.Status.RUNNING) {
|
if(statusTimeline == null || statusTimeline.getStatus() != Animation.Status.RUNNING) {
|
||||||
statusBar.setProgress(0);
|
statusBar.setProgress(0);
|
||||||
|
|
|
@ -201,6 +201,8 @@ public class AppServices {
|
||||||
} else {
|
} else {
|
||||||
restartServices();
|
restartServices();
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
EventManager.get().post(new DisconnectionEvent());
|
||||||
}
|
}
|
||||||
|
|
||||||
addURIHandlers();
|
addURIHandlers();
|
||||||
|
|
Loading…
Reference in a new issue