Index: sources/gui/qml/components/TextEntry.qml =================================================================== diff -u -r506a9e3db1a20bda1685e38c5e9041005c9a4a4f -rf7392d985121b21e9f9814e444b0810cd1d00b18 --- sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision 506a9e3db1a20bda1685e38c5e9041005c9a4a4f) +++ sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision f7392d985121b21e9f9814e444b0810cd1d00b18) @@ -62,23 +62,14 @@ horizontalAlignment: TextInput.AlignHCenter inputMethodHints: Qt.ImhDigitsOnly selectedTextColor: acceptableInput ? Colors.textMain : Colors.red + selectByMouse: true activeFocusOnPress: true - onPreeditTextChanged: { - console.debug(preeditText) - } - onFocusChanged: { if (focus) { selectAll() - _keyboard.active = false + _keyboard.setVisible(true) } } - Keys.onPressed: { - if (! acceptableInput) { - event - } - } - onAccepted: { _root.enterPressed() }