mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 16:43:14 +00:00
indicate if proxy is enabled in sparrow terminal
This commit is contained in:
@@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user