From 1c13eb370bd8e91e10bb9f819e675eb350a008a9 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Wed, 12 Jun 2024 22:17:01 +0300 Subject: [PATCH] fix: wallet navigation on sync at integrated node --- src/gui/views/wallets/wallet/content.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/views/wallets/wallet/content.rs b/src/gui/views/wallets/wallet/content.rs index 4b8ea29..3bfc6c1 100644 --- a/src/gui/views/wallets/wallet/content.rs +++ b/src/gui/views/wallets/wallet/content.rs @@ -616,7 +616,8 @@ impl WalletContent { // Block navigation if wallet is repairing and integrated node is not launching // and if wallet is closing or syncing after opening when there is no data to show. (wallet.is_repairing() && (integrated_node_ready || !integrated_node) && !sync_error) - || wallet.is_closing() || (sync_after_opening && !integrated_node) + || wallet.is_closing() || (sync_after_opening && + (!integrated_node || integrated_node_ready)) } /// Draw wallet sync progress content.