From 6a05ca7bc2e42e8a1d3fcaaeaa0185dcdbec0771 Mon Sep 17 00:00:00 2001 From: compudj Date: Sat, 14 Aug 2004 07:06:16 +0000 Subject: [PATCH] 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 --- ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.34.1