[SCM] ktp-contact-list packaging branch, master, updated. debian/15.12.1-2-1070-g6c56f91

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


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-contact-list.git;a=commitdiff;h=a7080c5

The following commit has been merged in the master branch:
commit a7080c5d95c0e881528036248490c9977300d707
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Sat May 19 19:38:30 2012 +0100

    Set compact view to be default when loading which action is preselected.
    
    recently the compact view was changed to be the default, however the action showed the incorrect option checked. This fixes it
---
 main-widget.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main-widget.cpp b/main-widget.cpp
index cb4523e..4fe359c 100644
--- a/main-widget.cpp
+++ b/main-widget.cpp
@@ -166,7 +166,7 @@ MainWidget::MainWidget(QWidget *parent)
                                                                 m_contactsListView, SLOT(onSwitchToFullView())));
     delegateTypeGroup->actions().last()->setCheckable(true);
 
-    if (guiConfigGroup.readEntry("selected_delegate", "full") == QLatin1String("full")) {
+    if (guiConfigGroup.readEntry("selected_delegate", "compact") == QLatin1String("full")) {
         delegateTypeGroup->actions().last()->setChecked(true);
     }
 
@@ -174,7 +174,7 @@ MainWidget::MainWidget(QWidget *parent)
                                                                 m_contactsListView, SLOT(onSwitchToCompactView())));
     delegateTypeGroup->actions().last()->setCheckable(true);
 
-    if (guiConfigGroup.readEntry("selected_delegate", "full") == QLatin1String("compact")) {
+    if (guiConfigGroup.readEntry("selected_delegate", "compact") == QLatin1String("compact")) {
         delegateTypeGroup->actions().last()->setChecked(true);
     }
 

-- 
ktp-contact-list packaging



More information about the pkg-kde-commits mailing list