diff --git a/Main.qml b/Main.qml index 1ea2291..c72ded5 100644 --- a/Main.qml +++ b/Main.qml @@ -413,11 +413,6 @@ Rectangle { target: mainStack y: Math.min(0, root.height - inputPanel.height - userListComponent.visibleBoundary) } - PropertyChanges { - target: inputPanel - y: root.height - inputPanel.height - opacity: 1 - } }, State { name: "hidden" @@ -425,11 +420,6 @@ Rectangle { target: mainStack y: 0 } - PropertyChanges { - target: inputPanel - y: root.height - root.height/4 - opacity: 0 - } } ] transitions: [ @@ -437,12 +427,6 @@ Rectangle { from: "hidden" to: "visible" SequentialAnimation { - ScriptAction { - script: { - inputPanel.item.activated = true; - Qt.inputMethod.show(); - } - } ParallelAnimation { NumberAnimation { target: mainStack @@ -450,17 +434,6 @@ Rectangle { duration: PlasmaCore.Units.longDuration easing.type: Easing.InOutQuad } - NumberAnimation { - target: inputPanel - property: "y" - duration: PlasmaCore.Units.longDuration - easing.type: Easing.OutQuad - } - OpacityAnimator { - target: inputPanel - duration: PlasmaCore.Units.longDuration - easing.type: Easing.OutQuad - } } } }, @@ -475,23 +448,6 @@ Rectangle { duration: PlasmaCore.Units.longDuration easing.type: Easing.InOutQuad } - NumberAnimation { - target: inputPanel - property: "y" - duration: PlasmaCore.Units.longDuration - easing.type: Easing.InQuad - } - OpacityAnimator { - target: inputPanel - duration: PlasmaCore.Units.longDuration - easing.type: Easing.InQuad - } - } - ScriptAction { - script: { - inputPanel.item.activated = false; - Qt.inputMethod.hide(); - } } } }