Skip to content

Commit

Permalink
Merge pull request #2567 from devinbileck/fix-btc-status-incorrectly-…
Browse files Browse the repository at this point in the history
…hidden-on-splash-screen

Fix BTC status incorrectly hidden on splash screen
  • Loading branch information
ManfredKarrer committed Mar 21, 2019
2 parents 32e27aa + c842575 commit 0b1b89e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions desktop/src/main/java/bisq/desktop/main/MainView.java
Original file line number Diff line number Diff line change
Expand Up @@ -610,11 +610,6 @@ private VBox createSplashScreen() {
Timer showTorNetworkSettingsTimer = UserThread.runAfter(() -> {
showTorNetworkSettingsButton.setVisible(true);
showTorNetworkSettingsButton.setManaged(true);
if (btcSyncIndicator.progressProperty().getValue() <= 0) {
// If no progress has been made, hide the BTC status since tor is not working
btcSyncIndicator.setVisible(false);
btcSplashInfo.setVisible(false);
}
}, SHOW_TOR_SETTINGS_DELAY_SEC);

splashP2PNetworkIconIdListener = (ov, oldValue, newValue) -> {
Expand Down

0 comments on commit 0b1b89e

Please sign in to comment.