[SCM] ktp-contact-applet packaging branch, master, updated. debian/16.04.2-1-67-g066859a

Maximiliano Curia maxy at moszumanska.debian.org
Tue Sep 12 14:08:31 UTC 2017


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

The following commit has been merged in the master branch:
commit d4c3ab1e20d9429cf2a5d6577d9670f26ae464de
Author: Kai Uwe Broulik <kde at privat.broulik.de>
Date:   Wed Feb 8 12:32:20 2017 +0100

    [Quick Chat] Trim text that is copied into clipboard
    
    Especially when there's spaces at the end you can't really tell them which makes copying passwords annoying.
    
    REVIEW: 129311
---
 chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml b/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml
index 5ce61e2..86bd0a6 100644
--- a/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml
+++ b/chat/org.kde.ktp-chat/contents/ui/ChatWidget.qml
@@ -176,7 +176,7 @@ FocusScope {
             text: i18n("Copy Text")
             icon: "edit-copy"
             enabled: contextMenu.visualParent && contextMenu.visualParent.text !== ""
-            onClicked: clipboard.content = KTpChat.HtmlHelper.decode(contextMenu.visualParent.text)
+            onClicked: clipboard.content = KTpChat.HtmlHelper.decode(contextMenu.visualParent.text).trim()
         }
     }
 

-- 
ktp-contact-applet packaging



More information about the pkg-kde-commits mailing list