From f3698b1b20d36dd530e8ad6972faefc3457d6e0a Mon Sep 17 00:00:00 2001 From: Sridou Date: Fri, 7 Nov 2025 21:57:09 +0530 Subject: [PATCH 1/2] added IPC call for calendar --- Services/IPCService.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Services/IPCService.qml b/Services/IPCService.qml index e7175219..6788b02c 100644 --- a/Services/IPCService.qml +++ b/Services/IPCService.qml @@ -35,6 +35,16 @@ Item { } } + IpcHandler { + target: "calendar" + function toggle() { + root.withTargetScreen(screen => { + var calendarPanel = PanelService.getPanel("calendarPanel", screen) + calendarPanel.toggle(null, "Clock") + }) + } + } + IpcHandler { target: "notifications" function toggleHistory() { From b9199b370706b6557c2ef4071f176481738bd32c Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Fri, 7 Nov 2025 15:12:41 -0500 Subject: [PATCH 2/2] Wallpaper: switch a info log to debug --- Modules/Panels/Wallpaper/WallpaperPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Panels/Wallpaper/WallpaperPanel.qml b/Modules/Panels/Wallpaper/WallpaperPanel.qml index 40de7685..60e2cd41 100644 --- a/Modules/Panels/Wallpaper/WallpaperPanel.qml +++ b/Modules/Panels/Wallpaper/WallpaperPanel.qml @@ -349,7 +349,7 @@ SmartPanel { return } wallpapersList = WallpaperService.getWallpapersList(targetScreen.name) - Logger.i("WallpaperPanel", "Got", wallpapersList.length, "wallpapers for screen", targetScreen.name) + Logger.d("WallpaperPanel", "Got", wallpapersList.length, "wallpapers for screen", targetScreen.name) // Pre-compute basenames once for better performance wallpapersWithNames = wallpapersList.map(function (p) {