[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:21:15 UTC 2016


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

The following commit has been merged in the master branch:
commit 2081a3e269ef5400fcb21a4dd5415cde7ddf0f4a
Author: Lasath Fernando <kde at lasath.org>
Date:   Mon Feb 13 15:17:18 2012 +1100

    Change Alignment of text in chat area to make messages easier to see
    
    Header now has Text.AlignBottom and body now has Text.AlignTop. This
    essentially 'groups' them together.
---
 plasmoid/org.kde.ktp-chatplasmoid/contents/ui/TextDelegate.qml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/TextDelegate.qml b/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/TextDelegate.qml
index 031ca26..e6871e4 100644
--- a/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/TextDelegate.qml
+++ b/plasmoid/org.kde.ktp-chatplasmoid/contents/ui/TextDelegate.qml
@@ -8,12 +8,13 @@ Item {
     PlasmaComponents.Label {
         id: header
 
-        height: paintedHeight
         width: view.width
         wrapMode: Text.Wrap
 
         color: textColor
         text: "<b>[" + Qt.formatTime(model.time) + "] " + model.user + " :</b>"
+
+        verticalAlignment: Text.AlignBottom
     }
     PlasmaComponents.Label {
         id: body
@@ -25,6 +26,7 @@ Item {
         color: textColor
         text: model.text
         textFormat: Text.RichText
+        verticalAlignment: Text.AlignTop
     }
 
     height: header.height + body.height

-- 
ktp-text-ui packaging



More information about the pkg-kde-commits mailing list