[SCM] ktp-contact-applet packaging branch, master, updated. debian/15.12.1-1-966-gde83ac5

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


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-desktop-applets.git;a=commitdiff;h=cc9e7fc

The following commit has been merged in the master branch:
commit cc9e7fc2f395e11d8842db803338535f94c1c60a
Author: Aleix Pol <aleixpol at kde.org>
Date:   Thu Apr 19 02:26:59 2012 +0200

    Small adjustments to the Chat Plasmoid.
    
    remove the spacing between contacts. It's not needed
    PlasmaWidgets.LineEdit -> PlasmaComponents.TextField
    
    More information about the problem with focus on the reviewboard
    
    REVIEW: 104651
---
 chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml b/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml
index 30efb4d..cca48a4 100644
--- a/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml
+++ b/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml
@@ -131,15 +131,14 @@ Item {
         width: 16
         orientation: Qt.Vertical
         opacity: view.atYEnd ? 0.3 : 1
-        
+
         Behavior on width { NumberAnimation { duration: 250 } }
         Behavior on opacity { NumberAnimation { duration: 250 } }
     }
 
-    PlasmaWidgets.LineEdit {
+    PlasmaComponents.TextField {
         id: input
-        //FIXME: replace with PlasmaComponents.LineEdit and focus, not before KDE 4.9 because it lacks onAccepted
-//         focus: true
+        focus: true
 
         anchors {
             left: parent.left
@@ -147,7 +146,7 @@ Item {
             bottom: parent.bottom
         }
 
-        onReturnPressed: {
+        Keys.onReturnPressed: {
             view.model.sendNewMessage(text);
             text = "";
         }

-- 
ktp-contact-applet packaging



More information about the pkg-kde-commits mailing list