summaryrefslogtreecommitdiff
path: root/modules/launcher/AppList.qml
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-13 13:57:35 -0500
committerATMDA <atdma2600@gmail.com>2025-11-13 13:57:35 -0500
commit2ebdba6cc4a6b3fe6acd3498c774d2ed8678eb2a (patch)
treeba0b982906e16bcff9e288313eea70e3b0f866aa /modules/launcher/AppList.qml
parentfix: background not loading on config reload (diff)
downloadcaelestia-shell-2ebdba6cc4a6b3fe6acd3498c774d2ed8678eb2a.tar.gz
caelestia-shell-2ebdba6cc4a6b3fe6acd3498c774d2ed8678eb2a.tar.bz2
caelestia-shell-2ebdba6cc4a6b3fe6acd3498c774d2ed8678eb2a.zip
launcher: reverted python launcher item to not exist, changes back to c0ea060f
Diffstat (limited to 'modules/launcher/AppList.qml')
-rw-r--r--modules/launcher/AppList.qml18
1 files changed, 1 insertions, 17 deletions
diff --git a/modules/launcher/AppList.qml b/modules/launcher/AppList.qml
index 6217237..7f7b843 100644
--- a/modules/launcher/AppList.qml
+++ b/modules/launcher/AppList.qml
@@ -52,7 +52,7 @@ StyledListView {
const text = search.text;
const prefix = Config.launcher.actionPrefix;
if (text.startsWith(prefix)) {
- for (const action of ["calc", "python", "scheme", "variant"])
+ for (const action of ["calc", "scheme", "variant"])
if (text.startsWith(`${prefix}${action} `))
return action;
@@ -93,14 +93,6 @@ StyledListView {
}
},
State {
- name: "python"
-
- PropertyChanges {
- model.values: [0]
- root.delegate: pythonItem
- }
- },
- State {
name: "scheme"
PropertyChanges {
@@ -248,14 +240,6 @@ StyledListView {
}
Component {
- id: pythonItem
-
- PythonItem {
- list: root
- }
- }
-
- Component {
id: schemeItem
SchemeItem {