You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
948 B
31 lines
948 B
From c50e4b987dc365d741880794ee6f2924065a87a6 Mon Sep 17 00:00:00 2001
|
|
From: Bhushan Shah <bhush94@gmail.com>
|
|
Date: Mon, 2 Mar 2015 08:50:29 +0530
|
|
Subject: [PATCH 4/8] Fix the no checkbox being checked for displayText config
|
|
|
|
BUG: 344711
|
|
FIXED-IN: Plasma/5.2
|
|
---
|
|
applets/pager/package/contents/ui/configGeneral.qml | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/applets/pager/package/contents/ui/configGeneral.qml b/applets/pager/package/contents/ui/configGeneral.qml
|
|
index 1915b76..1004c8e 100644
|
|
--- a/applets/pager/package/contents/ui/configGeneral.qml
|
|
+++ b/applets/pager/package/contents/ui/configGeneral.qml
|
|
@@ -66,7 +66,10 @@ Item {
|
|
}
|
|
}
|
|
|
|
- Component.onCompleted: cfg_currentDesktopSelectedChanged()
|
|
+ Component.onCompleted: {
|
|
+ cfg_currentDesktopSelectedChanged();
|
|
+ cfg_displayedTextChanged();
|
|
+ }
|
|
|
|
QtControls.ExclusiveGroup {
|
|
id: displayedTextGroup
|
|
--
|
|
1.9.3
|
|
|