fix detailed event view scroll move mouse out bug
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 27 Oct 2006 12:20:04 +0000 (12:20 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 27 Oct 2006 12:20:04 +0000 (12:20 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2216 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/configure.in
ltt/branches/poly/lttv/modules/gui/detailedevents/events.c

index 4b119abb628d63c14e6d609fc31cba3e6f02f92f..d3b9f35a0ec5e2ed713ff8402e7a1aec133ed733 100644 (file)
@@ -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
 
index 9a6bca0fc135712938f7d35951b595ed7f26d1c6..e8f0c53a1f708760a0a85f45f3309cb3d130b8a2 100644 (file)
@@ -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();
        }
This page took 0.025156 seconds and 4 git commands to generate.