From 047cc6f9579f17647cefe20ec05fdad9dafd0457 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Wed, 8 Nov 2023 15:38:26 +0100 Subject: [PATCH] qml: remove attempt to unfocus by clicking dialog background Doesn't really work as it triggers on events above the background it is defined on :( --- electrum/gui/qml/components/controls/ElDialog.qml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/electrum/gui/qml/components/controls/ElDialog.qml b/electrum/gui/qml/components/controls/ElDialog.qml index 61e8ad5e6..1f9b1c3cd 100644 --- a/electrum/gui/qml/components/controls/ElDialog.qml +++ b/electrum/gui/qml/components/controls/ElDialog.qml @@ -100,11 +100,4 @@ Dialog { } } - background: Rectangle { - id: bg - color: Material.dialogColor - TapHandler { - onTapped: bg.forceActiveFocus() - } - } }