diff options
| author | xiphon <xiphon@protonmail.com> | 2019-11-27 12:09:50 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2019-11-27 12:33:30 +0000 |
| commit | f47335f89fcb0504064f99a68a179c31c24467b9 (patch) | |
| tree | 33f489b1bc8c2946912e0ca12ade3d16cf2ea3c7 /wizard/WizardHeader.qml | |
| parent | 6c2c17ada1e43d7d432567e5c1e29e7dbe63e20a (diff) | |
| download | monzero-gui-f47335f89fcb0504064f99a68a179c31c24467b9.tar.gz monzero-gui-f47335f89fcb0504064f99a68a179c31c24467b9.tar.xz monzero-gui-f47335f89fcb0504064f99a68a179c31c24467b9.zip | |
Wizard, AddressBook, SettingsNode: prevent undesired text selection
Diffstat (limited to 'wizard/WizardHeader.qml')
| -rw-r--r-- | wizard/WizardHeader.qml | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/wizard/WizardHeader.qml b/wizard/WizardHeader.qml index 71061a5b..1e10683d 100644 --- a/wizard/WizardHeader.qml +++ b/wizard/WizardHeader.qml @@ -41,7 +41,7 @@ ColumnLayout { spacing: 4 Layout.maximumWidth: wizardController.wizardSubViewWidth - TextArea { + Text { text: title Layout.fillWidth: true font.family: MoneroComponents.Style.fontRegular.name @@ -55,19 +55,13 @@ ColumnLayout { } } - selectionColor: MoneroComponents.Style.textSelectionColor - selectedTextColor: MoneroComponents.Style.textSelectedColor - - selectByMouse: true wrapMode: Text.WordWrap - textMargin: 0 leftPadding: 0 topPadding: 0 bottomPadding: 0 - readOnly: true } - TextArea { + Text { Layout.fillWidth: true Layout.alignment: Qt.AlignCenter visible: parent.subtitle !== "" @@ -84,14 +78,8 @@ ColumnLayout { } } - selectionColor: MoneroComponents.Style.textSelectionColor - selectedTextColor: MoneroComponents.Style.textSelectedColor - - selectByMouse: true wrapMode: Text.WordWrap - textMargin: 0 leftPadding: 0 topPadding: 0 - readOnly: true } } |
