mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-20 01:42:38 +02:00
fix regression from #2232: reverse-scrolling was not applied to
GTK_SCROLL_SMOOTH events
This commit is contained in:
@@ -121,9 +121,9 @@ AModule::SCROLL_DIR AModule::getScrollDir(GdkEventScroll* e) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (distance_scrolled_y_ < -threshold) {
|
if (distance_scrolled_y_ < -threshold) {
|
||||||
dir = SCROLL_DIR::UP;
|
dir = reverse ? SCROLL_DIR::DOWN : SCROLL_DIR::UP;
|
||||||
} else if (distance_scrolled_y_ > threshold) {
|
} else if (distance_scrolled_y_ > threshold) {
|
||||||
dir = SCROLL_DIR::DOWN;
|
dir = reverse ? SCROLL_DIR::UP : SCROLL_DIR::DOWN;
|
||||||
} else if (distance_scrolled_x_ > threshold) {
|
} else if (distance_scrolled_x_ > threshold) {
|
||||||
dir = SCROLL_DIR::RIGHT;
|
dir = SCROLL_DIR::RIGHT;
|
||||||
} else if (distance_scrolled_x_ < -threshold) {
|
} else if (distance_scrolled_x_ < -threshold) {
|
||||||
|
Reference in New Issue
Block a user