From 1dc45bad8753e80dc4014d1331401a2bb5ba44c9 Mon Sep 17 00:00:00 2001
From: xiphon <xiphon@protonmail.com>
Date: Mon, 25 Nov 2019 07:55:54 +0000
Subject: [PATCH] Input: fix cursor shape, should be 'Qt.IBeamCursor'

---
 components/Input.qml      | 1 +
 components/InputMulti.qml | 1 +
 2 files changed, 2 insertions(+)

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();