[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:18:28 UTC 2016


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

The following commit has been merged in the master branch:
commit 9f3b90e17ae42699b069c33637fc20fc40fa8b53
Author: Aleix Pol <aleixpol at kde.org>
Date:   Wed Mar 13 19:03:17 2013 +0100

    Fix change on current conversation
    
    Only reset the current index in case the dialog hide but there's not
    another being shown.
    This fixes a weird behavior that happened when having 2 conversations and
    switching from one to another.
    
    REVIEW: 109467
---
 chat/org.kde.ktp-chat/contents/ui/ConversationDelegate.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chat/org.kde.ktp-chat/contents/ui/ConversationDelegate.qml b/chat/org.kde.ktp-chat/contents/ui/ConversationDelegate.qml
index 22d47dc..da2866f 100644
--- a/chat/org.kde.ktp-chat/contents/ui/ConversationDelegate.qml
+++ b/chat/org.kde.ktp-chat/contents/ui/ConversationDelegate.qml
@@ -71,7 +71,7 @@ ConversationDelegateButton {
                 dialog.y = point.y;
                 dialog.activateWindow();
                 dialog.mainItem.focus = true;
-            } else if(base.currentIndex != -1) {
+            } else if(base.currentIndex == index) {
                 closeConversation();
             }
         }

-- 
ktp-contact-applet packaging



More information about the pkg-kde-commits mailing list