From 8ea1e27d6d2ed71841b974a97c2813baefcfb284 Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Tue, 30 Nov 2021 14:10:32 -0500 Subject: [PATCH] Remove the krunner widget from home screen by default Because the widget does not have the text entry internally, and pops up a new window for entering search, which looks confusing and odd on the phone, we just don't add it by default for now until this can be fixed. This makes the first impression a bit better, and hides the annoyance behind needing to manually add the widget. Once the widget is fixed to not behave in such an odd manner, we can evaluate adding it back to the default layout. --- shell/contents/layout.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/shell/contents/layout.js b/shell/contents/layout.js index 75b77663..83fc982d 100644 --- a/shell/contents/layout.js +++ b/shell/contents/layout.js @@ -2,9 +2,6 @@ var desktopsArray = desktopsForActivity(currentActivity()); for (var j = 0; j < desktopsArray.length; j++) { desktopsArray[j].wallpaperPlugin = "org.kde.image"; } -desktopsArray[0].addWidget("org.kde.phone.krunner", 0, 0, screenGeometry(0).width, 20) -desktopsArray[0].currentConfigGroup = ["Shortcuts"] -desktopsArray[0].writeConfig("global", "Meta+F1") // keep this list in sync with shell/contents/updates/panelsfix.js var panel = new Panel("org.kde.phone.panel");