diff options
Diffstat (limited to 'components/package/contents/ui/ConversationView.qml')
-rw-r--r-- | components/package/contents/ui/ConversationView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/package/contents/ui/ConversationView.qml b/components/package/contents/ui/ConversationView.qml index aa3abcd2..589f3125 100644 --- a/components/package/contents/ui/ConversationView.qml +++ b/components/package/contents/ui/ConversationView.qml | |||
@@ -115,7 +115,7 @@ Rectangle { | |||
115 | root.scrollToEnd = false; | 115 | root.scrollToEnd = false; |
116 | root.currentIndex = listView.count - 1 | 116 | root.currentIndex = listView.count - 1 |
117 | //positionViewAtEnd/Index don't work | 117 | //positionViewAtEnd/Index don't work |
118 | listView.contentY = listView.contentHeight - listView.height | 118 | listView.contentY = Math.max(listView.contentHeight - listView.height, 0) |
119 | } | 119 | } |
120 | } | 120 | } |
121 | 121 | ||