mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-24 12:46:45 +00:00
connection toggle tooltip
This commit is contained in:
parent
ccf4e98968
commit
9a80065605
2 changed files with 6 additions and 1 deletions
|
@ -234,6 +234,7 @@ public class AppController implements Initializable {
|
||||||
});
|
});
|
||||||
|
|
||||||
onlineProperty.bindBidirectional(serverToggle.selectedProperty());
|
onlineProperty.bindBidirectional(serverToggle.selectedProperty());
|
||||||
|
onlineProperty().addListener((observable, oldValue, newValue) -> serverToggle.setTooltip(new Tooltip(newValue ? "Connected to " + Config.get().getElectrumServer() : "Disconnected")));
|
||||||
|
|
||||||
Config config = Config.get();
|
Config config = Config.get();
|
||||||
connectionService = createConnectionService();
|
connectionService = createConnectionService();
|
||||||
|
|
|
@ -76,7 +76,11 @@
|
||||||
|
|
||||||
<StatusBar fx:id="statusBar" text="" minHeight="36">
|
<StatusBar fx:id="statusBar" text="" minHeight="36">
|
||||||
<rightItems>
|
<rightItems>
|
||||||
<UnlabeledToggleSwitch fx:id="serverToggle" />
|
<UnlabeledToggleSwitch fx:id="serverToggle">
|
||||||
|
<tooltip>
|
||||||
|
<Tooltip text="Disconnected" />
|
||||||
|
</tooltip>
|
||||||
|
</UnlabeledToggleSwitch>
|
||||||
</rightItems>
|
</rightItems>
|
||||||
</StatusBar>
|
</StatusBar>
|
||||||
</children>
|
</children>
|
||||||
|
|
Loading…
Reference in a new issue