From 3f06bd2b7c77f36f191fe7cb66c240bea1d9a50d Mon Sep 17 00:00:00 2001 From: Steven Rostedt Date: Wed, 10 Feb 2010 20:05:13 -0500 Subject: trace-graph: Resize instead of redraw when adding plots When adding a new plot, a resize is required since the size of the graph has changed. Not just redrawing the graph. Signed-off-by: Steven Rostedt --- trace-graph.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/trace-graph.c b/trace-graph.c index 59397cf..2214141 100644 --- a/trace-graph.c +++ b/trace-graph.c @@ -434,7 +434,8 @@ plot_task_clicked (gpointer data) graph_plot_task(ginfo, ginfo->filter_task_selected, pos); ginfo->draw_height = PLOT_SPACE(ginfo->plots); - redraw_graph(ginfo); + ginfo->draw_height = PLOT_SPACE(ginfo->plots); + gtk_widget_set_size_request(ginfo->draw, ginfo->draw_width, ginfo->draw_height); update_label_window(ginfo); } @@ -449,7 +450,7 @@ remove_plot_clicked (gpointer data) trace_graph_plot_remove(ginfo, plot); ginfo->draw_height = PLOT_SPACE(ginfo->plots); - redraw_graph(ginfo); + gtk_widget_set_size_request(ginfo->draw, ginfo->draw_width, ginfo->draw_height); update_label_window(ginfo); } -- cgit v1.2.2