How do I get the OS specific paste menu for a QtQuick.Controls 2* TextField on a right click on selected text.
That works:
import QtQuick.Controls 1.4
TextField
{
placeholderText: qsTr("Filter")
selectByMouse: true
}
and gives me the menu, while
import QtQuick.Controls 2.2
TextField
{
placeholderText: qsTr("Filter")
selectByMouse: true
}
this does nothing on right-click.
I'm using version 5.9 LTS and I'm stuck with it for a while.
It works neither on Ubuntu Linux 16.04 with 5.9 manually installed nor on Windows 10, mingw{32,64} on msys2.