From 769211cf75a33105333837075ba0a3385d05e9f8 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 8 Apr 2026 20:12:48 +0200 Subject: [PATCH] Open app drawer directly from homescreen Skip the intermediate go-to-page-0 step when pressing Home while already on the homescreen in convergence mode. --- containments/homescreens/folio/qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/homescreens/folio/qml/main.qml b/containments/homescreens/folio/qml/main.qml index 139afe32..31e4446d 100644 --- a/containments/homescreens/folio/qml/main.qml +++ b/containments/homescreens/folio/qml/main.qml @@ -94,7 +94,7 @@ ContainmentItem { } else { // If we are already on the homescreen switch (folio.HomeScreenState.viewState) { case Folio.HomeScreenState.PageView: - if (folio.HomeScreenState.currentPage === 0) { + if (ShellSettings.Settings.convergenceModeEnabled || folio.HomeScreenState.currentPage === 0) { folio.HomeScreenState.openAppDrawer(); } else { folio.HomeScreenState.goToPage(0, false);