Index: sources/gui/qml/components/TextEntry.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -rc1d0546e2d1a51ff919b2172ce647003359f0853 --- sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision c1d0546e2d1a51ff919b2172ce647003359f0853) @@ -36,6 +36,7 @@ property alias text : _input.text property bool hasCursor : true property alias lengthMax : _input.maximumLength + property bool useQtNumPad : true readonly property alias isValid : _input.acceptableInput @@ -62,7 +63,10 @@ if ( _root.hasCursor ) { _input.selectAll() } - _keyboard.setVisible(true) + + if (useQtNumPad) { + _keyboard.setVisible(true) + } } }