summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-03-30 19:19:39 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-03-30 19:19:39 +0200
commitcb76777fcec4aa6c4c3e09b16cced4317d6260bb (patch)
treeb122c2d2db7cb0e0c177651c036950f574682473 /resources/qml
parentFix cursor moving to the end when editing in the middle (diff)
downloadnheko-cb76777fcec4aa6c4c3e09b16cced4317d6260bb.tar.xz
Add delay to showing scroll down button
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/MessageView.qml44
1 files changed, 19 insertions, 25 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml
index ab0c9b1e..b20a1d88 100644
--- a/resources/qml/MessageView.qml
+++ b/resources/qml/MessageView.qml
@@ -763,7 +763,7 @@ Item {
             rightMargin: Nheko.paddingMedium+(fullWidth-width)/2
         }
         property int fullWidth: 40
-        width: fullWidth
+        width: 0
         height: width
         radius: width/2
         onClicked: chat.positionViewAtBeginning();
@@ -778,10 +778,17 @@ Item {
             radius: toEndButton.radius
         }
 
-        states: State {
-            name: "hidden"
-            when: chat.atYEnd
-        }
+        states: [
+            State {
+                name: ""
+                PropertyChanges { target: toEndButton; width: 0 }
+            },
+            State {
+                name: "shown"
+                when: !chat.atYEnd
+                PropertyChanges { target: toEndButton; width: toEndButton.fullWidth }
+            }
+        ]
 
         Image {
             id: buttonImg
@@ -791,33 +798,20 @@ Item {
             fillMode: Image.PreserveAspectFit
         }
 
-        transitions: [
-            Transition {
-                from: ""
-                to: "hidden"
-
-                PropertyAnimation {
-                    target: toEndButton
-                    properties: "width"
-                    easing.type: Easing.InOutQuad
-                    from: 40
-                    to: 0
-                    duration: 200
-                }
-            },
-            Transition {
-                from: "hidden"
-                to: ""
+        transitions: Transition {
+            from: ""
+            to: "shown"
+            reversible: true
 
+            SequentialAnimation {
+                PauseAnimation { duration: 500 }
                 PropertyAnimation {
                     target: toEndButton
                     properties: "width"
                     easing.type: Easing.InOutQuad
-                    from: 0
-                    to: 40
                     duration: 200
                 }
             }
-        ]
+        }
     }
 }