From df4b3b85a949c6aa1952963a7455f88578a080d5 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 19 Jul 2025 15:03:22 +1000 Subject: internal: fix types for lsp --- config/LauncherConfig.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'config/LauncherConfig.qml') diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index 2cd42a1..635aa56 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -6,8 +6,10 @@ JsonObject { property string actionPrefix: ">" property bool enableDangerousActions: false // Allow actions that can cause losing data, like shutdown, reboot and logout property int dragThreshold: 50 + property UseFuzzy useFuzzy: UseFuzzy {} + property Sizes sizes: Sizes {} - property JsonObject useFuzzy: JsonObject { + component UseFuzzy: JsonObject { property bool apps: false property bool actions: false property bool schemes: false @@ -15,7 +17,7 @@ JsonObject { property bool wallpapers: false } - property JsonObject sizes: JsonObject { + component Sizes: JsonObject { property int itemWidth: 600 property int itemHeight: 57 property int wallpaperWidth: 280 -- cgit v1.2.3-freya