diff --git a/electrum/gui/qml/components/NostrConfigDialog.qml b/electrum/gui/qml/components/NostrConfigDialog.qml index 767b3c42f..f53646826 100644 --- a/electrum/gui/qml/components/NostrConfigDialog.qml +++ b/electrum/gui/qml/components/NostrConfigDialog.qml @@ -70,6 +70,7 @@ ElDialog { Layout.fillWidth: true Layout.fillHeight: true font.family: FixedFont + topPadding: constants.paddingLarge wrapMode: TextEdit.WrapAnywhere onTextChanged: valid = verify(text) inputMethodHints: Qt.ImhSensitiveData | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase diff --git a/electrum/gui/qml/components/controls/ElTextArea.qml b/electrum/gui/qml/components/controls/ElTextArea.qml index eeb528abb..e161979d2 100644 --- a/electrum/gui/qml/components/controls/ElTextArea.qml +++ b/electrum/gui/qml/components/controls/ElTextArea.qml @@ -19,6 +19,7 @@ Flickable { property alias inputMethodHints: edit.inputMethodHints property alias placeholderText: edit.placeholderText property alias color: edit.color + property alias topPadding: rootpane.topPadding readonly property bool anyActiveFocus: activeFocus || edit.activeFocus contentWidth: rootpane.width