From 100a80c17d1f661d4351fa3b33b0b59090a74ac9 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 4 Jan 2025 21:46:22 +0200 Subject: [PATCH] feat(server): add subtree for mobile launchers --- src/services/hidden_subtree.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/services/hidden_subtree.ts b/src/services/hidden_subtree.ts index 9e29375fd..a82b53235 100644 --- a/src/services/hidden_subtree.ts +++ b/src/services/hidden_subtree.ts @@ -253,6 +253,34 @@ function buildHiddenSubtreeDefinition(): Item { } ] }, + { + id: '_lbMobileRoot', + title: "Mobile Launch Bar", + type: "doc", + icon: "bx-mobile", + isExpanded: true, + attributes: [ { type: 'label', name: 'docName', value: 'launchbar_intro' } ], + children: [ + { + id: "_lbMobileAvailableLaunchers", + title: t("hidden-subtree.available-launchers-title"), + type: 'doc', + icon: 'bx-hide', + isExpanded: true, + attributes: [ { type: 'label', name: 'docName', value: 'launchbar_intro' } ], + children: [] + }, + { + id: "_lbMobileVisibleLaunchers", + title: t("hidden-subtree.visible-launchers-title"), + type: 'doc', + icon: 'bx-show', + isExpanded: true, + attributes: [ { type: 'label', name: 'docName', value: 'launchbar_intro' } ], + children: [] + } + ] + }, { id: '_options', title: t("hidden-subtree.options-title"),