From 7f6c3bd40c02cbbf25831ab64efae2f560875888 Mon Sep 17 00:00:00 2001 From: Steven Rostedt Date: Wed, 10 Feb 2010 19:49:22 -0500 Subject: trace-graph: Resize graph height when plot is added or removed The graph height was only calculated when the graph was loaded. Now that you can add new plots, we need to recalculate the height anytime a plot is added or removed. Reported-by: Darren Hart Signed-off-by: Steven Rostedt --- trace-graph.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trace-graph.c b/trace-graph.c index 2ad7c2f..623abcb 100644 --- a/trace-graph.c +++ b/trace-graph.c @@ -426,6 +426,7 @@ plot_task_clicked (gpointer data) struct graph_info *ginfo = data; graph_plot_task(ginfo, ginfo->filter_task_selected); + ginfo->draw_height = PLOT_SPACE(ginfo->plots); redraw_graph(ginfo); update_label_window(ginfo); } @@ -440,6 +441,7 @@ remove_plot_clicked (gpointer data) return; trace_graph_plot_remove(ginfo, plot); + ginfo->draw_height = PLOT_SPACE(ginfo->plots); redraw_graph(ginfo); update_label_window(ginfo); } -- cgit v1.2.2