From bb4fa4adfbecdd0773e8922a8af4472ce0989c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Mon, 20 Feb 2017 11:14:03 +0100 Subject: [PATCH] Fix no record path displayed while recording a call --- gtk/incall_view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/incall_view.c b/gtk/incall_view.c index 4008578bd..2febb8c4e 100644 --- a/gtk/incall_view.c +++ b/gtk/incall_view.c @@ -1014,7 +1014,7 @@ void linphone_gtk_record_call_toggled(GtkWidget *button){ linphone_core_stop_conference_recording(lc); } - gtk_label_set_markup(GTK_LABEL(label),message); + gtk_label_set_markup(GTK_LABEL(label),g_locale_to_utf8(message, -1, NULL, NULL, NULL)); g_free(message); }