From 2ebdba6cc4a6b3fe6acd3498c774d2ed8678eb2a Mon Sep 17 00:00:00 2001 From: ATMDA Date: Thu, 13 Nov 2025 13:57:35 -0500 Subject: launcher: reverted python launcher item to not exist, changes back to c0ea060f --- modules/launcher/AppList.qml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) (limited to 'modules/launcher/AppList.qml') 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; @@ -92,14 +92,6 @@ StyledListView { root.delegate: calcItem } }, - State { - name: "python" - - PropertyChanges { - model.values: [0] - root.delegate: pythonItem - } - }, State { name: "scheme" @@ -247,14 +239,6 @@ StyledListView { } } - Component { - id: pythonItem - - PythonItem { - list: root - } - } - Component { id: schemeItem -- cgit v1.2.3-freya