From ea13d692a6d715325d0f154c567e27155cc48f12 Mon Sep 17 00:00:00 2001 From: ondra Date: Thu, 17 Apr 2025 00:23:45 +0200 Subject: [PATCH] Revert "Enable scroll wrap-around" because it sucks This reverts commit 0e7f0732c5dbab2ae714589d133abcc69035d275. --- src/tangara/ui/screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tangara/ui/screen.cpp b/src/tangara/ui/screen.cpp index 4755caff..5541b6be 100644 --- a/src/tangara/ui/screen.cpp +++ b/src/tangara/ui/screen.cpp @@ -34,7 +34,7 @@ Screen::Screen() // Disable wrapping by default, since it's confusing and generally makes it // harder to navigate quickly. - lv_group_set_wrap(group_, true); // CUSTOMIZE: enabled - https://codeberg.org/cool-tech-zone/tangara-fw/issues/222 + lv_group_set_wrap(group_, false); } Screen::~Screen() {