diff --git a/applets/notifications/contents/ui/main.qml b/applets/notifications/contents/ui/main.qml index a607ab64..0caf22e1 100644 --- a/applets/notifications/contents/ui/main.qml +++ b/applets/notifications/contents/ui/main.qml @@ -156,48 +156,6 @@ Item { summary: "July: Hello?" actions: [] } - ListElement { - source: "im2Source" - appIcon: "im-google" - appName: "Message" - summary: "July: Hello?" - actions: [] - } - ListElement { - source: "im2Source" - appIcon: "im-google" - appName: "Message" - summary: "July: Hello?" - actions: [] - } - ListElement { - source: "im2Source" - appIcon: "im-google" - appName: "Message" - summary: "July: Hello?" - actions: [] - } - ListElement { - source: "im2Source" - appIcon: "im-google" - appName: "Message" - summary: "July: Hello?" - actions: [] - } - ListElement { - source: "im2Source" - appIcon: "im-google" - appName: "Message" - summary: "July: Hello?" - actions: [] - } - ListElement { - source: "im2Source" - appIcon: "im-google" - appName: "Message" - summary: "July: Hello?" - actions: [] - } } ListView { diff --git a/containments/homescreen/package/contents/ui/main.qml b/containments/homescreen/package/contents/ui/main.qml index ee7bca74..0f799985 100644 --- a/containments/homescreen/package/contents/ui/main.qml +++ b/containments/homescreen/package/contents/ui/main.qml @@ -515,10 +515,7 @@ Item { snapMode: GridView.SnapToRow onFlickingChanged: { - if (!draggingVertically && contentY < -headerItem.height + root.height) { - scrollAnim.to = Math.round(contentY/root.height) * root.height - scrollAnim.running = true; - } + draggingVerticallyChanged(false); } onDraggingVerticallyChanged: { if (draggingVertically) { @@ -540,13 +537,6 @@ Item { scrollAnim.running = true; return; } - - //(1000/scrollAnim.duration) is the length scrolled at the current speed in the duration of the animation - - if (contentY < -headerItem.height + root.height) { - scrollAnim.to = Math.round((contentY + (verticalVelocity / (1000/scrollAnim.duration))) / root.height) * root.height - scrollAnim.running = true; - } } NumberAnimation { id: scrollAnim