diff options
author | Victor Kareh <[email protected]> | 2018-08-26 22:32:55 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-08-28 12:38:00 +0200 |
commit | 48a9bec4da3d22d4b12f702d0e95c172835f884f (patch) | |
tree | 27efac27ba2940b40468771ff116ededddc500ec /src/math-equation.c | |
parent | 6db315a4ea984186848ff9c22d3f901955e9c3a9 (diff) | |
download | mate-calc-48a9bec4da3d22d4b12f702d0e95c172835f884f.tar.bz2 mate-calc-48a9bec4da3d22d4b12f702d0e95c172835f884f.tar.xz |
Copy equation as ASCII text
This ensures compatibility with pasting into software that cannot handle Unicode characters (e.g. LibreOffice)
Diffstat (limited to 'src/math-equation.c')
-rw-r--r-- | src/math-equation.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |