From 3aa12cd97f618b458437ce9e6cbbe92d8bc84c5d Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Thu, 24 Oct 2024 16:19:07 +0200 Subject: [PATCH] qml: allow direct seed edit when platform is not android useful for debugging --- electrum/gui/qml/components/controls/SeedTextArea.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/controls/SeedTextArea.qml b/electrum/gui/qml/components/controls/SeedTextArea.qml index aef9314ab..76952ccad 100644 --- a/electrum/gui/qml/components/controls/SeedTextArea.qml +++ b/electrum/gui/qml/components/controls/SeedTextArea.qml @@ -45,7 +45,7 @@ Pane { font.pixelSize: constants.fontSizeLarge font.family: FixedFont inputMethodHints: Qt.ImhSensitiveData | Qt.ImhLowercaseOnly | Qt.ImhNoPredictiveText - readOnly: true + readOnly: AppController.isAndroid() background: Rectangle { color: constants.darkerBackground