From 177d8c24eb421059e57967fc1d236ad85ec4abca Mon Sep 17 00:00:00 2001 From: Kofa Date: Sun, 19 Apr 2026 18:41:46 +0200 Subject: [PATCH] Fix exposure adjustment when scrolling over the scopes --- src/libs/histogram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/histogram.c b/src/libs/histogram.c index 214fa01a8852..c1ba71592e2e 100644 --- a/src/libs/histogram.c +++ b/src/libs/histogram.c @@ -493,7 +493,7 @@ static void _eventbox_scroll_callback(GtkEventControllerScroll* self, // FIXME: should handle smooth scrolling rather than discrete? // FIXME: should scrolling of scope be handled in the drawable rather than // the eventbox. - dt_dev_exposure_handle_event(0, dy - dx, event->scroll.state, + dt_dev_exposure_handle_event(0, dx - dy, event->scroll.state, s->highlight == DT_SCOPES_HIGHLIGHT_BLACK_POINT); } else