talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit cf0d5714de9a48b76ad989e49d96fd8904f7db2c
parent e90e11cadc5546567f47bb13c50020eb822b75d4
Author: wwp <subscript@free.fr>
Date:   Wed, 15 Sep 2021 11:26:10 +0200

Fix wrong variable used to access event data (neutral at run-time).

Diffstat:
Msrc/textview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/textview.c b/src/textview.c @@ -2741,7 +2741,7 @@ static gboolean textview_scrolled(GtkWidget *widget, gdouble x, y; if ((event->direction == GDK_SCROLL_SMOOTH) && - gdk_event_get_scroll_deltas(_event, &x, &y)) { + gdk_event_get_scroll_deltas(event, &x, &y)) { if (y < 0) textview_zoom(widget, TRUE); else