Index: sources/gui/qml/Keyboard.qml =================================================================== diff -u -r65558208e4968de9a5470ff5fda1ee2a9d00c793 -rac23b968f565c2beeb153ca2d554b8f868634512 --- sources/gui/qml/Keyboard.qml (.../Keyboard.qml) (revision 65558208e4968de9a5470ff5fda1ee2a9d00c793) +++ sources/gui/qml/Keyboard.qml (.../Keyboard.qml) (revision ac23b968f565c2beeb153ca2d554b8f868634512) @@ -29,6 +29,7 @@ */ InputPanel { id : _root function setVisible(vVisible) { + Qt.inputMethod.show() visible = vVisible } @@ -41,13 +42,13 @@ // when an alarm is active then alarm covers the keyboard // to avoid that keyboard moved a little higher // because the keyboard height is calculated by InputPanel itself and can not be set, - // a gap beetween the bottom of the keyboard and the screen. - // the rectangle _bottomFiller is to fill that gap - Rectangle { id: _bottomFiller - height: Variables.minVGap - color: "black" // InputPanel background color. - anchors.left: _root.left - anchors.right: _root.right + // a gap beetween the bottom of the keyboard and the screen. + // the rectangle _bottomFiller is to fill that gap + Rectangle { id: _bottomFiller + height: Variables.minVGap + color: "black" // InputPanel background color. + anchors.left: _root.left + anchors.right: _root.right anchors.top: _root.bottom } }