[SCM] ktp-kded-integration-module packaging branch, master, updated. debian/15.12.1-2-382-gbd961c2

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


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-kded-module.git;a=commitdiff;h=85d241c

The following commit has been merged in the master branch:
commit 85d241c43d0854e6be3dd2b2344ecbb059da53e9
Author: James Smith <smithjd15 at gmail.com>
Date:   Mon Jan 5 12:22:25 2015 +0100

    Disable now Playing config widgets when now Playing is unchecked
    
    Disable the now Playing group box widgets when enable now Playing is unchecked.This is similar to what autoaway and screensaver away do with their widgets when disabled.
    
    REVIEW: 121823
---
 config/telepathy-kded-config.cpp | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/config/telepathy-kded-config.cpp b/config/telepathy-kded-config.cpp
index 4ed6a16..e51576a 100644
--- a/config/telepathy-kded-config.cpp
+++ b/config/telepathy-kded-config.cpp
@@ -377,7 +377,13 @@ void TelepathyKDEDConfig::autoXAChecked(bool checked)
 
 void TelepathyKDEDConfig::nowPlayingChecked(bool checked)
 {
-    Q_UNUSED(checked)
+    ui->m_nowPlayingText->setEnabled(checked);
+    ui->message_format_label->setEnabled(checked);
+    ui->m_nowPlayingVideoText->setEnabled(checked);
+    ui->message_format_label_video->setEnabled(checked);
+    ui->m_tagListWidget->setEnabled(checked);
+    ui->empty_fields_label->setEnabled(checked);
+    ui->m_nowPlayingEmptyFields->setEnabled(checked);
     Q_EMIT changed(true);
 }
 

-- 
ktp-kded-integration-module packaging



More information about the pkg-kde-commits mailing list