Index: sources/gui/qml/KeyboardItem.qml =================================================================== diff -u -r5b9ff6266f7ca8ae9bbd5eace92d6454359791db -r5f00168c6618b8d605ce31086e5c36896e529757 --- sources/gui/qml/KeyboardItem.qml (.../KeyboardItem.qml) (revision 5b9ff6266f7ca8ae9bbd5eace92d6454359791db) +++ sources/gui/qml/KeyboardItem.qml (.../KeyboardItem.qml) (revision 5f00168c6618b8d605ce31086e5c36896e529757) @@ -55,9 +55,9 @@ function determineYPos() { let ySize = parent.height - _root.height - if (vAlarmStatus.hasAlarm && _alarmBar.visible) - ySize -= Variables.notificationHeight / 2 - + if (vAlarmStatus.hasAlarm && _alarmBar.visible) { + ySize -= Variables.notificationHeight + } return ySize } @@ -67,6 +67,7 @@ anchors.horizontalCenter : parent.horizontalCenter y : Qt.inputMethod.visible ? determineYPos() : parent.height width : (parent.width * 0.8) + height : 480 Behavior on y { NumberAnimation { duration: Variables.keybardAnimationDuration } }