From: compudj Date: Sat, 14 Aug 2004 07:06:16 +0000 (+0000) Subject: fix scroll left glitch : was due to main window not giving end time. fixed with add... X-Git-Tag: v0.12.20~2751 X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=6a05ca7bc2e42e8a1d3fcaaeaa0185dcdbec0771;p=lttv.git fix scroll left glitch : was due to main window not giving end time. fixed with add 1 to time end in request git-svn-id: http://ltt.polymtl.ca/svn@738 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c b/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c index 265c68d5..53f21422 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c @@ -144,6 +144,8 @@ void drawing_data_request(Drawing_t *drawing, convert_pixels_to_time(drawing->width, x+width, time_window, &time_end); + time_end = ltt_time_add(time_end, ltt_time_one); // because main window + // doesn't deliver end time. lttvwindow_events_request_remove_all(tab, control_flow_data);