From 7fc1a3d17541b2e14afb17b0b5303849caaeca72 Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Sat, 8 Jun 2024 08:34:04 -0500 Subject: [PATCH] Fixed scrolling too far. Signed-off-by: Armored Dragon --- scripts/communityScripts/armored-chat/armored_chat.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/communityScripts/armored-chat/armored_chat.qml b/scripts/communityScripts/armored-chat/armored_chat.qml index a928391da7..e153c2fec9 100644 --- a/scripts/communityScripts/armored-chat/armored_chat.qml +++ b/scripts/communityScripts/armored-chat/armored_chat.qml @@ -458,11 +458,7 @@ Rectangle { function scrollToBottom() { if (listview.count == 0) return; - // if (chat_scrollbar.visualPosition > 0.85) { - listview.positionViewAtIndex(listview.count - 1, ListView.End); listview.positionViewAtEnd(); - listview.contentY = listview.contentY + 50; - // } }