From: compudj Date: Wed, 14 Sep 2005 20:41:41 +0000 (+0000) Subject: fix scrolling X-Git-Tag: v0.12.20~2303 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=e140c5b36400c978e2a58cd402425a7f50739e9c;hp=91eedcbffa5fbf9de81c60d1798fdd76ea63fdee;p=lttv.git fix scrolling git-svn-id: http://ltt.polymtl.ca/svn@1186 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/lttv/modules/gui/Makefile.am b/ltt/branches/poly/lttv/modules/gui/Makefile.am index 0a9c97bc..487e3dc7 100644 --- a/ltt/branches/poly/lttv/modules/gui/Makefile.am +++ b/ltt/branches/poly/lttv/modules/gui/Makefile.am @@ -6,5 +6,5 @@ # WARNING : subdirs order is important : mainWin depends on API -SUBDIRS = lttvwindow controlflow detailedevents statistics filter +SUBDIRS = lttvwindow controlflow detailedevents statistics filter tracecontrol diff --git a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c index 9814c3d2..92705b2b 100644 --- a/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c +++ b/ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindow.c @@ -938,8 +938,10 @@ void lttvwindow_events_request(Tab *tab, if(!tab->events_request_pending) { /* Redraw has +20 priority. We want to let the redraw be done while we do - * our job. */ - g_idle_add_full((G_PRIORITY_HIGH_IDLE + 21), + * our job. Mathieu : test with high prio higher than events for better + * scrolling. */ + //g_idle_add_full((G_PRIORITY_HIGH_IDLE + 21), + g_idle_add_full((G_PRIORITY_DEFAULT - 2), (GSourceFunc)execute_events_requests, tab, NULL);