From 1f353b67317af85a80a7b2c9c1412a18b769de9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Atoch?= Date: Mon, 3 Nov 2025 01:07:13 -0500 Subject: [PATCH] IPC: Fix IPC calls when there is only one screen. --- Services/IPCService.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/IPCService.qml b/Services/IPCService.qml index a9323518..b3117105 100644 --- a/Services/IPCService.qml +++ b/Services/IPCService.qml @@ -329,7 +329,7 @@ Item { // Single monitor setup can execute immediately if (Quickshell.screens.length === 1) { - pendingCallback(Quickshell.screens[0]) + callback(Quickshell.screens[0]) } else { // Multi-monitors setup needs to start async detection detectedScreen = null