From 48a9bec4da3d22d4b12f702d0e95c172835f884f Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Sun, 26 Aug 2018 22:32:55 -0400 Subject: Copy equation as ASCII text This ensures compatibility with pasting into software that cannot handle Unicode characters (e.g. LibreOffice) --- src/math-equation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/math-equation.c') diff --git a/src/math-equation.c b/src/math-equation.c index 3073804..2aa687b 100644 --- a/src/math-equation.c +++ b/src/math-equation.c @@ -416,14 +416,14 @@ math_equation_copy(MathEquation *equation) { GtkTextIter start, end; gchar *text; - + g_return_if_fail(equation != NULL); if (!gtk_text_buffer_get_selection_bounds(GTK_TEXT_BUFFER(equation), &start, &end)) gtk_text_buffer_get_bounds(GTK_TEXT_BUFFER(equation), &start, &end); text = gtk_text_buffer_get_text(GTK_TEXT_BUFFER(equation), &start, &end, FALSE); - gtk_clipboard_set_text(gtk_clipboard_get(GDK_NONE), text, -1); + gtk_clipboard_set_text(gtk_clipboard_get(GDK_NONE), g_str_to_ascii (text, "C"), -1); g_free(text); } -- cgit v1.2.1