From 7889e078150150813b30ae1fe2c6d0473ff71053 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 8 Apr 2026 19:07:47 +0200 Subject: [PATCH] Minimize all windows on home button press The home button was a no-op in convergence mode when windows were visible. Call WindowUtil.minimizeAll() so the home button acts as show-desktop, preserving the mobile path that also resets homescreen state before minimizing. --- containments/homescreens/folio/qml/main.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/containments/homescreens/folio/qml/main.qml b/containments/homescreens/folio/qml/main.qml index 85721c6d..139afe32 100644 --- a/containments/homescreens/folio/qml/main.qml +++ b/containments/homescreens/folio/qml/main.qml @@ -80,6 +80,9 @@ ContainmentItem { folio.HomeScreenState.closeAppDrawer(); folio.HomeScreenState.goToPage(0, false); + WindowPlugin.WindowUtil.minimizeAll(); + } else { + // In convergence mode, toggle "show desktop" (minimize all to reveal homescreen) WindowPlugin.WindowUtil.minimizeAll(); }