From f1dfe5e2486cfe1f464cf6041d07f52eae32030c Mon Sep 17 00:00:00 2001 From: f321x Date: Wed, 27 Aug 2025 14:02:28 +0200 Subject: [PATCH] qml: LoadingWalletDialog: add some padding add some padding at the bottom of the LoadingWalletDialog so the spinning circle is not directly at the bottom of the dialog, looks a bit nicer this way. --- electrum/gui/qml/components/LoadingWalletDialog.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electrum/gui/qml/components/LoadingWalletDialog.qml b/electrum/gui/qml/components/LoadingWalletDialog.qml index 2cd07ac7a..2969cdc4d 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 {