summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/math-equation.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/math-equation.c b/src/math-equation.c
index c465500..ac70948 100644
--- a/src/math-equation.c
+++ b/src/math-equation.c
@@ -997,6 +997,9 @@ math_equation_set_number(MathEquation *equation, const MPNumber *x)
equation->priv->ans_start = gtk_text_buffer_create_mark(GTK_TEXT_BUFFER(equation), NULL, &start, FALSE);
equation->priv->ans_end = gtk_text_buffer_create_mark(GTK_TEXT_BUFFER(equation), NULL, &end, TRUE);
gtk_text_buffer_apply_tag(GTK_TEXT_BUFFER(equation), equation->priv->ans_tag, &start, &end);
+
+ g_object_notify(G_OBJECT(equation), "display");
+
g_free(text);
free_state(state);
}