~renatofilho/ubuntu-calendar-app/optimize

« back to all changes in this revision

Viewing changes to KeyboardRectangle.qml

merged: ~renatofilho/ubuntu-calendar-app/fix-add-guest-search-field

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
Item {
22
22
    id: keyboardRect
23
23
 
24
 
    property bool forceVisible: false
25
 
 
26
24
    anchors.left: parent.left
27
25
    anchors.right: parent.right
28
26
    anchors.bottom: parent.bottom
29
 
    height: Qt.inputMethod.visible || forceVisible ? Qt.inputMethod.keyboardRectangle.height : 0
 
27
    height: Qt.inputMethod.visible ? Qt.inputMethod.keyboardRectangle.height : 0
30
28
 
31
29
    Behavior on height {
32
30
        NumberAnimation {