lnurlw: follow-up: fix android edge-to-edge layout padding
What changed, and why it matters
This commit is a minor user-interface follow-up that adjusts Android edge-to-edge layout padding for a Lightning withdrawal dialog. It adds one line setting a padding flag to false so the dialog renders correctly on newer Android versions. There is no security relevance in the change itself.
No security action needed. Treat as a normal UI/layout fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds needsSystemBarPadding: false to LnurlWithdrawRequestDialog.qml in Electrum’s QML Android GUI. This is a layout-only follow-up to an earlier pull request and affects only visual padding around the system status/navigation bars. No logic, cryptography, networking, or permission code is modified.
Changed components
electrum/gui/qml/components/LnurlWithdrawRequestDialog.qmlInspect captured patch +1 / −0
diff --git a/electrum/gui/qml/components/LnurlWithdrawRequestDialog.qml b/electrum/gui/qml/components/LnurlWithdrawRequestDialog.qml
index 4bbcab9..d5a84c6 100644
--- a/electrum/gui/qml/components/LnurlWithdrawRequestDialog.qml
+++ b/electrum/gui/qml/components/LnurlWithdrawRequestDialog.qml
@@ -17,6 +17,7 @@ ElDialog {
property RequestDetails requestDetails
padding: 0
+ needsSystemBarPadding: false
property int walletCanReceive: 0
property int providerMinWithdrawable: parseInt(requestDetails.lnurlData['min_withdrawable_sat'])
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.