v1.0-230926 #27

Merged
FatttSnake merged 81 commits from dev into master 2023-09-26 11:06:08 +08:00
Showing only changes of commit bba86ade6d - Show all commits

View File

@@ -61,7 +61,7 @@ const Home: React.FC = () => {
}
const handleScrollDown = () => {
if (currentContent >= content.length) {
if (currentContent >= content.length - 1) {
return
}
handleScrollToContent(currentContent + 1)()
@@ -72,7 +72,7 @@ const Home: React.FC = () => {
}
const handleWheel = (event: React.WheelEvent) => {
if (event.altKey || event.ctrlKey) {
if (event.altKey || event.ctrlKey || event.shiftKey) {
return
}