From 80f2ed1283f84f6ea8d68fc699d1ac6568d562a7 Mon Sep 17 00:00:00 2001 From: compudj Date: Fri, 27 Oct 2006 12:20:04 +0000 Subject: [PATCH] fix detailed event view scroll move mouse out bug git-svn-id: http://ltt.polymtl.ca/svn@2216 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/configure.in | 2 +- ltt/branches/poly/lttv/modules/gui/detailedevents/events.c | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ltt/branches/poly/configure.in b/ltt/branches/poly/configure.in index 4b119abb..d3b9f35a 100644 --- a/ltt/branches/poly/configure.in +++ b/ltt/branches/poly/configure.in @@ -23,7 +23,7 @@ AC_PREREQ(2.57) AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS) #AC_WITH_LTDL # not needed ? -AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.68-27102006) +AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.69-27102006) AM_CONFIG_HEADER(config.h) AM_PROG_LIBTOOL diff --git a/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c b/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c index 9a6bca0f..e8f0c53a 100644 --- a/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c +++ b/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c @@ -1298,7 +1298,8 @@ static gboolean events_check_handler(guint count, gboolean *stop_flag, widget = gtk_get_event_widget(event); if(widget == lookup_widget(main_window_get_widget(evd->tab), - "StopProcessingButton")) { + "StopProcessingButton") + || widget == evd->vscroll_vc) { gtk_main_do_event(event); gdk_window_process_all_updates(); } @@ -1551,7 +1552,8 @@ int event_hook(void *hook_data, void *call_data) widget = gtk_get_event_widget(event); if(widget == lookup_widget(main_window_get_widget(event_viewer_data->tab), - "StopProcessingButton")) { + "StopProcessingButton") + || widget == event_viewer_data->vscroll_vc) { gtk_main_do_event(event); gdk_window_process_all_updates(); } -- 2.34.1