mirror of
https://github.com/tnodir/fort
synced 2024-11-18 00:26:20 +00:00
11 lines
253 B
QML
11 lines
253 B
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
|
|
TextField {
|
|
id: textField
|
|
persistentSelection: true
|
|
selectByMouse: true
|
|
// XXX: QTBUG-64048: mouse right click clears selected text
|
|
onReleased: textContextMenu.show(event, textField)
|
|
}
|