parent
9cb0eca8e6
commit
025285c750
@ -1,30 +0,0 @@
|
|||||||
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
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
|||||||
From ecbefe504d792aa5700451e8987ec05fdae2bf1d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Montel Laurent <montel@kde.org>
|
|
||||||
Date: Sat, 7 Mar 2015 15:20:34 +0100
|
|
||||||
Subject: [PATCH 6/8] Fix Bug 266760 - The autostart kcm doesn't show the
|
|
||||||
correct name immediately after "adding program"
|
|
||||||
|
|
||||||
FIXED-IN: Plasma-5.2.1
|
|
||||||
BUG: 266760
|
|
||||||
---
|
|
||||||
kcms/autostart/autostart.cpp | 3 ++-
|
|
||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/kcms/autostart/autostart.cpp b/kcms/autostart/autostart.cpp
|
|
||||||
index e948087..fd41fc8 100644
|
|
||||||
--- a/kcms/autostart/autostart.cpp
|
|
||||||
+++ b/kcms/autostart/autostart.cpp
|
|
||||||
@@ -302,8 +302,9 @@ void Autostart::slotAddProgram()
|
|
||||||
if ( dlg.exec() != QDialog::Accepted )
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
+ KDesktopFile newConf(desktopTemplate.path());
|
|
||||||
DesktopStartItem * item = new DesktopStartItem( desktopPath, m_programItem,this );
|
|
||||||
- addItem( item, service->name(), m_pathName[0], service->exec() , false);
|
|
||||||
+ addItem( item, service->name(), m_pathName[0], newConf.desktopGroup().readEntry("Exec") , false);
|
|
||||||
}
|
|
||||||
|
|
||||||
void Autostart::slotAddScript()
|
|
||||||
--
|
|
||||||
1.9.3
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
|||||||
From 429d1bb6bfb32c4a4ad3e9e682513ab2625c823c Mon Sep 17 00:00:00 2001
|
|
||||||
From: Montel Laurent <montel@kde.org>
|
|
||||||
Date: Sun, 8 Mar 2015 09:09:01 +0100
|
|
||||||
Subject: [PATCH 7/8] Fix double click
|
|
||||||
|
|
||||||
---
|
|
||||||
kcms/autostart/autostart.cpp | 8 ++++----
|
|
||||||
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/kcms/autostart/autostart.cpp b/kcms/autostart/autostart.cpp
|
|
||||||
index fd41fc8..b102323 100644
|
|
||||||
--- a/kcms/autostart/autostart.cpp
|
|
||||||
+++ b/kcms/autostart/autostart.cpp
|
|
||||||
@@ -353,14 +353,14 @@ void Autostart::slotRemoveCMD()
|
|
||||||
|
|
||||||
void Autostart::slotEditCMD(QTreeWidgetItem* ent)
|
|
||||||
{
|
|
||||||
+
|
|
||||||
if (!ent) return;
|
|
||||||
- AutoStartItem *entry = dynamic_cast<AutoStartItem*>( ent );
|
|
||||||
- if ( entry )
|
|
||||||
+ DesktopStartItem *desktopEntry = dynamic_cast<DesktopStartItem*>( ent );
|
|
||||||
+ if ( desktopEntry )
|
|
||||||
{
|
|
||||||
- const KFileItem kfi = KFileItem( KFileItem::Unknown, KFileItem::Unknown, QUrl( entry->fileName() ), true );
|
|
||||||
+ const KFileItem kfi = KFileItem( KFileItem::Unknown, KFileItem::Unknown, QUrl( desktopEntry->fileName() ), true );
|
|
||||||
if (! slotEditCMD( kfi ))
|
|
||||||
return;
|
|
||||||
- DesktopStartItem *desktopEntry = dynamic_cast<DesktopStartItem*>( entry );
|
|
||||||
if (desktopEntry) {
|
|
||||||
KService service(desktopEntry->fileName().path());
|
|
||||||
addItem( desktopEntry, service.name(), m_pathName.value(m_paths.indexOf(desktopEntry->fileName().adjusted(QUrl::RemoveFilename).toString())), service.exec(),false );
|
|
||||||
--
|
|
||||||
1.9.3
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
|||||||
From 336094f43d82d83f374116862a0f568fe9092224 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bhushan Shah <bhush94@gmail.com>
|
|
||||||
Date: Mon, 9 Mar 2015 21:04:09 +0530
|
|
||||||
Subject: [PATCH 8/8] Fix tabbar not showing up when switching to favorites
|
|
||||||
from search
|
|
||||||
|
|
||||||
when we are in search view tabbar is not visible and immediatly
|
|
||||||
switching to favorites causes no tabbar.
|
|
||||||
|
|
||||||
BUG: 343524
|
|
||||||
FIXED-IN: 5.2.2
|
|
||||||
---
|
|
||||||
applets/kickoff/package/contents/ui/FullRepresentation.qml | 8 ++++++++
|
|
||||||
1 file changed, 8 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/applets/kickoff/package/contents/ui/FullRepresentation.qml b/applets/kickoff/package/contents/ui/FullRepresentation.qml
|
|
||||||
index d978987..0ba18e6 100644
|
|
||||||
--- a/applets/kickoff/package/contents/ui/FullRepresentation.qml
|
|
||||||
+++ b/applets/kickoff/package/contents/ui/FullRepresentation.qml
|
|
||||||
@@ -493,6 +493,10 @@ Item {
|
|
||||||
target: root
|
|
||||||
Keys.forwardTo: [tabBar.layout]
|
|
||||||
}
|
|
||||||
+ PropertyChanges {
|
|
||||||
+ target: tabBar
|
|
||||||
+ visible: true
|
|
||||||
+ }
|
|
||||||
},
|
|
||||||
State {
|
|
||||||
name: "Applications"
|
|
||||||
@@ -500,6 +504,10 @@ Item {
|
|
||||||
target: root
|
|
||||||
Keys.forwardTo: [root]
|
|
||||||
}
|
|
||||||
+ PropertyChanges {
|
|
||||||
+ target: tabBar
|
|
||||||
+ visible: true
|
|
||||||
+ }
|
|
||||||
},
|
|
||||||
State {
|
|
||||||
name: "Search"
|
|
||||||
--
|
|
||||||
1.9.3
|
|
||||||
|
|
Loading…
Reference in new issue