mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
Change order of binding after object creation
This commit is contained in:
parent
59551772a7
commit
e3f85cb6e6
1 changed files with 1 additions and 1 deletions
|
@ -465,9 +465,9 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
|
|||
};
|
||||
model.getWalletServiceErrorMsg().addListener(walletServiceErrorMsgListener);
|
||||
|
||||
btcSyncIndicator.progressProperty().bind(model.getBtcSyncProgress());
|
||||
btcSyncIndicator = new JFXProgressBar();
|
||||
btcSyncIndicator.setPrefWidth(305);
|
||||
btcSyncIndicator.progressProperty().bind(model.getBtcSyncProgress());
|
||||
|
||||
ImageView btcSyncIcon = new ImageView();
|
||||
btcSyncIcon.setVisible(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue