What changed, and why it matters
This commit is a purely cosmetic user-interface tweak. It adds 20 pixels of empty space at the bottom of a loading dialog so the spinning circle is not touching the dialog edge. There is no security relevance.
Recommended action
No security action needed; this is a cosmetic UI change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change adds an empty QML Item with Layout.preferredHeight: 20 inside the LoadingWalletDialog.qml layout, providing bottom padding. No logic, network, cryptographic, input handling, or privilege code is modified.
Changed components
electrum/gui/qml/components/LoadingWalletDialog.qmlInspect captured patch +4 / −0
diff --git a/electrum/gui/qml/components/LoadingWalletDialog.qml b/electrum/gui/qml/components/LoadingWalletDialog.qml
index 2cd07ac..2969cdc 100644
--- a/electrum/gui/qml/components/LoadingWalletDialog.qml
+++ b/electrum/gui/qml/components/LoadingWalletDialog.qml
@@ -32,6 +32,10 @@ ElDialog {
running: Daemon.loading
}
+
+ Item {
+ Layout.preferredHeight: 20
+ }
}
Connections {
Risk score
Our methodology →Why this scored 15/100
Human-validated context
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
No validated notes yet.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.