tweaks showStep logic

This commit is contained in:
MinamiFunakoshiTR 2025-05-22 12:11:02 -07:00
parent eb996bf112
commit cd9b3501a0
Failed to extract signature

View file

@ -12,7 +12,7 @@
function showStep(i: number) {
if (preload === 0) return true;
if (stackBackground) return i <= index;
if (stackBackground) return i >= 0;
return i >= index - preload && i <= index + preload;
}