Skip to content
Snippets Groups Projects
Commit 61aa119b authored by Jonas Fonseca's avatar Jonas Fonseca
Browse files

[#2582] main_window_message: use gtk_message_dialog_set_markup

... else the markup text is escaped.
parent 2231b6bc
Branches
Tags
No related merge requests found
......@@ -291,11 +291,10 @@ main_window_message(GtkMessageType type, gchar * markup){
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
type,
GTK_BUTTONS_CLOSE,
"%s\n",
markup);
NULL);
gtk_window_set_title(GTK_WINDOW(dialog), _("SFLphone Error"));
gtk_message_dialog_set_markup(GTK_MESSAGE_DIALOG(dialog), markup);
gtk_dialog_run (GTK_DIALOG(dialog));
gtk_widget_destroy (GTK_WIDGET(dialog));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment