diff options
| author | xiphon <xiphon@protonmail.com> | 2019-11-25 07:55:54 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2019-11-25 07:56:30 +0000 |
| commit | 1dc45bad8753e80dc4014d1331401a2bb5ba44c9 (patch) | |
| tree | 1fba949c3b90c5563f4db534f870bc24a437b935 | |
| parent | 2f5c47e95fab6beec40e8c1dec7b74c75b931a0c (diff) | |
| download | monzero-gui-1dc45bad8753e80dc4014d1331401a2bb5ba44c9.tar.gz monzero-gui-1dc45bad8753e80dc4014d1331401a2bb5ba44c9.tar.xz monzero-gui-1dc45bad8753e80dc4014d1331401a2bb5ba44c9.zip | |
Input: fix cursor shape, should be 'Qt.IBeamCursor'
| -rw-r--r-- | components/Input.qml | 1 | ||||
| -rw-r--r-- | components/InputMulti.qml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/components/Input.qml b/components/Input.qml index 3ac9a532..33601d88 100644 --- a/components/Input.qml +++ b/components/Input.qml @@ -47,6 +47,7 @@ TextField { } MoneroComponents.ContextMenu { + cursorShape: Qt.IBeamCursor onPaste: { textField.clear(); textField.paste(); diff --git a/components/InputMulti.qml b/components/InputMulti.qml index 8fccb6a6..ddbd5552 100644 --- a/components/InputMulti.qml +++ b/components/InputMulti.qml @@ -70,6 +70,7 @@ TextArea { } MoneroComponents.ContextMenu { + cursorShape: Qt.IBeamCursor onPaste: { textArea.clear(); textArea.paste(); |
