mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 08:37:05 +00:00
add tooltip to wallet tab label on load failure
This commit is contained in:
@@ -2027,6 +2027,7 @@ public class AppController implements Initializable {
|
||||
Label tabLabel = (Label)tab.getGraphic();
|
||||
if(!tabLabel.getStyleClass().contains("failure")) {
|
||||
tabLabel.getGraphic().getStyleClass().add("failure");
|
||||
tabLabel.setTooltip(new Tooltip("Error loading transaction history from server"));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2059,6 +2060,7 @@ public class AppController implements Initializable {
|
||||
private void tabLabelRemoveFailure(Tab tab) {
|
||||
Label tabLabel = (Label)tab.getGraphic();
|
||||
tabLabel.getGraphic().getStyleClass().remove("failure");
|
||||
tabLabel.setTooltip(null);
|
||||
}
|
||||
|
||||
private void setTorIcon() {
|
||||
|
||||
Reference in New Issue
Block a user