From debb4da90d55036808ed4b1280ebe46d2f494ac2 Mon Sep 17 00:00:00 2001 From: f321x Date: Tue, 2 Sep 2025 10:32:10 +0200 Subject: [PATCH] qml: android: add padding to report dialog in ExcDialog Adds padding to the report content dialog in the QML ExceptionDialog if required on android. Followup https://github.com/spesmilo/electrum/pull/10178 --- electrum/gui/qml/components/ExceptionDialog.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/electrum/gui/qml/components/ExceptionDialog.qml b/electrum/gui/qml/components/ExceptionDialog.qml index 9bc3a7b5b..e9aabd5be 100644 --- a/electrum/gui/qml/components/ExceptionDialog.qml +++ b/electrum/gui/qml/components/ExceptionDialog.qml @@ -115,11 +115,14 @@ ElDialog width: parent.width height: parent.height z: 1001 // above root + needsSystemBarPadding: false header: null Flickable { anchors.fill: parent + anchors.topMargin: app.statusBarHeight + anchors.bottomMargin: app.navigationBarHeight contentHeight: reportLabel.implicitHeight interactive: height < contentHeight