diff options
author | Richard Moe Gustavsen <richard.gustavsen@theqtcompany.com> | 2016-04-12 13:54:01 +0200 |
---|---|---|
committer | Richard Moe Gustavsen <richard.gustavsen@theqtcompany.com> | 2016-04-26 10:12:57 +0000 |
commit | e7de8865926e3d51561bb44efc1f8423238058ea (patch) | |
tree | fde93107825f04491b4917ebe4a05091dfa0d65a /src/controls/Styles | |
parent | 3411c3579fb9e767c819c0c8d9f35c52c9964b06 (diff) | |
download | qtquickcontrols-e7de8865926e3d51561bb44efc1f8423238058ea.tar.gz |
iOS: Remove text selection handling
Text selection and overlay are now done from the
iOS platform plugin.
Change-Id: I3903ab05816775f75708e915780f549e62797135
Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src/controls/Styles')
-rw-r--r-- | src/controls/Styles/iOS/TextAreaStyle.qml | 2 | ||||
-rw-r--r-- | src/controls/Styles/iOS/TextFieldStyle.qml | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/controls/Styles/iOS/TextAreaStyle.qml b/src/controls/Styles/iOS/TextAreaStyle.qml index 8e2efb2b..5a52ff80 100644 --- a/src/controls/Styles/iOS/TextAreaStyle.qml +++ b/src/controls/Styles/iOS/TextAreaStyle.qml @@ -51,7 +51,5 @@ ScrollViewStyle { property color selectedTextColor: SystemPaletteSingleton.highlightedText(control.enabled) property color backgroundColor: control.backgroundVisible ? SystemPaletteSingleton.base(control.enabled) : "transparent" property int renderType: Text.QtRendering - property Component __selectionHandle: SelectionHandleStyle{} - property Component __cursorHandle: CursorHandleStyle{} property Component __cursorDelegate: CursorDelegate{} } diff --git a/src/controls/Styles/iOS/TextFieldStyle.qml b/src/controls/Styles/iOS/TextFieldStyle.qml index 2ed0e004..34a227c0 100644 --- a/src/controls/Styles/iOS/TextFieldStyle.qml +++ b/src/controls/Styles/iOS/TextFieldStyle.qml @@ -42,7 +42,5 @@ import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.3 TextFieldStyle { - __selectionHandle: SelectionHandleStyle{} - __cursorHandle: CursorHandleStyle{} __cursorDelegate: CursorDelegate{} } |