[SCM] ktp-text-ui packaging branch, master, updated. debian/15.12.1-1-1918-gdf4b0ec

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:22:49 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-text-ui.git;a=commitdiff;h=b731bbe

The following commit has been merged in the master branch:
commit b731bbe0a9efd52d9641ab9df2d66e60ed7114d0
Author: Aleix Pol <aleixpol at kde.org>
Date:   Fri Oct 12 01:27:19 2012 +0200

    Fix scrolling
    
    Workaround a bug in Qt #27592 where the ListView won't scroll to the end when
    sections are being used. Dirty hack but seems to work correct.
    
    REVIEW: 106791
    BUG: 298392
---
 plasmoid/org.kde.ktp-chatplasmoid/contents/ui/ChatWidget.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/ChatWidget.qml b/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/ChatWidget.qml
index b3e3631..ea68f41 100644
--- a/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/ChatWidget.qml
+++ b/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/ChatWidget.qml
@@ -162,7 +162,7 @@ Item {
 
         onCountChanged: {
             if(!moving && followConversation && contentHeight>height) {
-                view.positionViewAtEnd()
+                view.positionViewAtEnd(); view.positionViewAtEnd() //see https://bugreports.qt-project.org/browse/QTBUG-27529
             }
         }
     }

-- 
ktp-text-ui packaging



More information about the pkg-kde-commits mailing list