mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-24 12:46:45 +00:00
indicate if proxy is enabled in sparrow terminal
This commit is contained in:
parent
dbafefb940
commit
d881e47ec9
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ public class SparrowTextGui extends MultiWindowTextGUI {
|
|||
|
||||
private void setConnectedLabel(Integer height) {
|
||||
getGUIThread().invokeLater(() -> {
|
||||
connectedLabel.setText(height == null ? "Disconnected" : "Connected at " + height);
|
||||
connectedLabel.setText(height == null ? "Disconnected" : "Connected " + (AppServices.isUsingProxy() ? "with proxy " : "") + "at " + height);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue