Comment 2 for bug 1413194

Revision history for this message
Olivier Tilloy (osomon) wrote : Re: Cut/Copy/Paste options displayed off the top of the screen from the addressbar

I can easily reproduce with the following standalone test app:

import QtQuick 2.0
import Ubuntu.Components 1.1

MainView {
    TextField {
        anchors {
            top: parent.top
            left: parent.left
            right: parent.right
            margins: units.gu(2)
        }
        focus: true
        text: "long-press me to invoke contextual options"
        Component.onCompleted: selectAll()
    }
}