fix: also apply long press chapter skip to xtc reader

This commit is contained in:
Nathan James 2026-01-14 20:35:20 +00:00
parent 56ec3dfb6d
commit a99ace5fd0

View File

@ -127,7 +127,7 @@ void XtcReaderActivity::loop() {
return;
}
const bool skipPages = mappedInput.getHeldTime() > skipPageMs;
const bool skipPages = SETTINGS.longPressChapterSkip && mappedInput.getHeldTime() > skipPageMs;
const int skipAmount = skipPages ? 10 : 1;
if (prevReleased) {