Redraw chart when changing to the chart tab

Fixes #59
This commit is contained in:
Gergely Polonkai 2014-08-22 15:45:09 +02:00
parent 95d0e21ef8
commit f89165a298

View File

@ -394,6 +394,12 @@ ag_window_redraw_aspect_table(AgWindow *window)
gtk_widget_show_all(priv->aspect_table); gtk_widget_show_all(priv->aspect_table);
} }
/**
* ag_window_redraw_chart:
* @window: the #AgWindow to operate on
*
* Redraw the chart on the chart view.
*/
void void
ag_window_redraw_chart(AgWindow *window) ag_window_redraw_chart(AgWindow *window)
{ {
@ -1052,6 +1058,7 @@ ag_window_tab_changed_cb(GtkStack *stack, GParamSpec *pspec, AgWindow *window)
// not the real active one! // not the real active one!
if (priv->current_tab == priv->tab_edit) { if (priv->current_tab == priv->tab_edit) {
ag_window_recalculate_chart(window, FALSE); ag_window_recalculate_chart(window, FALSE);
ag_window_redraw_chart(window);
} }
} }