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.
plasma-desktop/0008-Fix-tabbar-not-showing...

45 lines
1.3 KiB

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