From 8e5ea8e12dc5899d11a21c25c8b606c7a48ce149 Mon Sep 17 00:00:00 2001 From: f321x Date: Tue, 20 Jan 2026 13:33:04 +0100 Subject: [PATCH] qml: protect Address Private Keys from screenshots Address private keys weren't protected from screenshots. --- electrum/gui/qml/components/AddressDetails.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/electrum/gui/qml/components/AddressDetails.qml b/electrum/gui/qml/components/AddressDetails.qml index 3d71c7101..b631e4b6b 100644 --- a/electrum/gui/qml/components/AddressDetails.qml +++ b/electrum/gui/qml/components/AddressDetails.qml @@ -346,4 +346,10 @@ Pane { dialog.open() } } + + Binding { + target: AppController + property: 'secureWindow' + value: Boolean(addressdetails.privkey) + } }