From c8c76a8d6f6fd42105c571b43b4cd46cc6eb4eee Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Tue, 2 May 2023 20:16:36 +0200 Subject: [PATCH] qml: fix var ref --- electrum/gui/qml/components/controls/SeedKeyboard.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/controls/SeedKeyboard.qml b/electrum/gui/qml/components/controls/SeedKeyboard.qml index 15b87ab28..750e9ceb8 100644 --- a/electrum/gui/qml/components/controls/SeedKeyboard.qml +++ b/electrum/gui/qml/components/controls/SeedKeyboard.qml @@ -11,8 +11,8 @@ Item { property int hpadding: 0 property int vpadding: 15 - property int keywidth: (root.width - 2 * padding) / 10 - keyhspacing - property int keyheight: (root.height - 2 * padding) / 4 - keyvspacing + property int keywidth: (root.width - 2 * hpadding) / 10 - keyhspacing + property int keyheight: (root.height - 2 * vpadding) / 4 - keyvspacing property int keyhspacing: 4 property int keyvspacing: 5