fix(ui): hide Donate tab in Help until a wallet is open

The tab requires an open wallet to send from, so showing it before
one is loaded led to a dead end. Gate it behind IsWalletOpen, same as
the other wallet-only UI.
This commit is contained in:
2026-07-19 17:46:31 +02:00
parent 51f1af8786
commit 7057905d94
+3 -2
View File
@@ -1648,8 +1648,9 @@
</ScrollViewer>
</TabItem>
<!-- Tab: Donate -->
<TabItem Header="{Binding Loc[help.tab.donate]}">
<!-- Tab: Donate (needs an open wallet to send from) -->
<TabItem Header="{Binding Loc[help.tab.donate]}"
IsVisible="{Binding IsWalletOpen}">
<ScrollViewer VerticalScrollBarVisibility="Auto">
<StackPanel Spacing="12" Margin="0,12,0,0">
<TextBlock Text="{Binding Loc[donate.desc]}" TextWrapping="Wrap"