~saviq/ubuntu/saucy/qtdeclarative-opensource-src/add-qtquick-delegate-range

« back to all changes in this revision

Viewing changes to tests/manual/scenegraph_lancelot/data/text/textinput_selected_ligature.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Item {
 
4
    width: 320
 
5
    height: 480
 
6
 
 
7
    TextInput {
 
8
        anchors.centerIn: parent
 
9
        id: textInput
 
10
        font.pixelSize: 12
 
11
        font.family: "Arial"
 
12
        text: "Are griffins birds or mammals?"
 
13
 
 
14
        Component.onCompleted: {
 
15
            textInput.select(3, 8)
 
16
        }
 
17
    }
 
18
}