From f7932c45e3d7fb26535d8f52e27f86028dcb738c Mon Sep 17 00:00:00 2001 From: Mondotosz Date: Tue, 21 Apr 2026 11:39:18 +0200 Subject: [PATCH] fix(ipc): added missing entry to Control settingsTabMap fixed the following call by adding the missing idle entry ``` qs -c noctalia-shell ipc call settings openTab idle ``` --- Services/Control/IPCService.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Services/Control/IPCService.qml b/Services/Control/IPCService.qml index f07bb7bfe..d8308e5de 100644 --- a/Services/Control/IPCService.qml +++ b/Services/Control/IPCService.qml @@ -104,7 +104,8 @@ Singleton { "system": SettingsPanel.Tab.System, "systemmonitor": SettingsPanel.Tab.System, "userinterface": SettingsPanel.Tab.UserInterface, - "wallpaper": SettingsPanel.Tab.Wallpaper + "wallpaper": SettingsPanel.Tab.Wallpaper, + "idle": SettingsPanel.Tab.Idle }) function _parseSettingsTabArg(tabArg) {