mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-23 20:36:44 +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().addListener((observable, oldValue, newValue) -> serverToggle.setTooltip(new Tooltip(newValue ? "Connected to " + Config.get().getElectrumServer() : "Disconnected")));
|
||||
|
||||
Config config = Config.get();
|
||||
connectionService = createConnectionService();
|
||||
|
|
|
@ -76,7 +76,11 @@
|
|||
|
||||
<StatusBar fx:id="statusBar" text="" minHeight="36">
|
||||
<rightItems>
|
||||
<UnlabeledToggleSwitch fx:id="serverToggle" />
|
||||
<UnlabeledToggleSwitch fx:id="serverToggle">
|
||||
<tooltip>
|
||||
<Tooltip text="Disconnected" />
|
||||
</tooltip>
|
||||
</UnlabeledToggleSwitch>
|
||||
</rightItems>
|
||||
</StatusBar>
|
||||
</children>
|
||||
|
|
Loading…
Reference in a new issue