From 44e5ed6bbf16da2ed0db7ad5f2b326af61797964 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Mon, 24 Nov 2025 17:58:10 -0500 Subject: [PATCH] folio: Fix typo with keyboard navigation logic --- containments/homescreens/folio/qml/FolioHomeScreen.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containments/homescreens/folio/qml/FolioHomeScreen.qml b/containments/homescreens/folio/qml/FolioHomeScreen.qml index 9be8f6a4..ff09dc4f 100644 --- a/containments/homescreens/folio/qml/FolioHomeScreen.qml +++ b/containments/homescreens/folio/qml/FolioHomeScreen.qml @@ -375,14 +375,14 @@ Item { event.accepted = true; break; case Qt.Key_Left: - if (folio.HomeScreenState.favoritesBarLocation === Folio.HomeScreenState.Left) { + if (folio.HomeScreenState.favouritesBarLocation === Folio.HomeScreenState.Left) { // Go to left page if mounted on the left folio.HomeScreenState.goToPage(folio.HomeScreenState.currentPage - 1, false); event.accepted = true; } break; case Qt.Key_Right: - if (folio.HomeScreenState.favoritesBarLocation === Folio.HomeScreenState.Right) { + if (folio.HomeScreenState.favouritesBarLocation === Folio.HomeScreenState.Right) { // Go to right page if mounted on the right folio.HomeScreenState.goToPage(folio.HomeScreenState.currentPage + 1, false); event.accepted = true;