fix regression from #2232: reverse-scrolling was not applied to

GTK_SCROLL_SMOOTH events
This commit is contained in:
Kory Prince 2023-07-01 03:09:47 -05:00
parent b9cd0287f4
commit 35496f461f
1 changed files with 2 additions and 2 deletions

View File

@ -121,9 +121,9 @@ AModule::SCROLL_DIR AModule::getScrollDir(GdkEventScroll* e) {
}
if (distance_scrolled_y_ < -threshold) {
dir = SCROLL_DIR::UP;
dir = reverse ? SCROLL_DIR::DOWN : SCROLL_DIR::UP;
} else if (distance_scrolled_y_ > threshold) {
dir = SCROLL_DIR::DOWN;
dir = reverse ? SCROLL_DIR::UP : SCROLL_DIR::DOWN;
} else if (distance_scrolled_x_ > threshold) {
dir = SCROLL_DIR::RIGHT;
} else if (distance_scrolled_x_ < -threshold) {