summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui
diff options
context:
space:
mode:
Diffstat (limited to 'components/package/contents/ui')
-rw-r--r--components/package/contents/ui/SingleMailView.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/components/package/contents/ui/SingleMailView.qml b/components/package/contents/ui/SingleMailView.qml
index 8731e270..3c76928f 100644
--- a/components/package/contents/ui/SingleMailView.qml
+++ b/components/package/contents/ui/SingleMailView.qml
@@ -64,6 +64,15 @@ Rectangle {
64 64
65 boundsBehavior: Flickable.StopAtBounds 65 boundsBehavior: Flickable.StopAtBounds
66 66
67 //Always scroll to the end of the conversation
68 highlightFollowsCurrentItem: true
69 //Scroll quickly
70 highlightMoveDuration: 1
71 onCountChanged: {
72 //TODO: ideally we should only do this initially, not when new messages enter while you're reading.
73 currentIndex = count - 1;
74 }
75
67 //Intercept all scroll events, 76 //Intercept all scroll events,
68 //necessary due to the webengineview 77 //necessary due to the webengineview
69 KubeFramework.MouseProxy { 78 KubeFramework.MouseProxy {