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.
This commit is contained in:
Marco Allegretti 2026-04-08 20:12:48 +02:00
parent 00a9ac1c4d
commit 769211cf75

View file

@ -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);