Commit c7f4c6ab authored by Victor Ananjevsky's avatar Victor Ananjevsky

enable markup in log for progress dialog

parent 48e0415c
......@@ -116,7 +116,10 @@ handle_stdin (GIOChannel *channel, GIOCondition condition, gpointer data)
logline = g_strdup_printf ("%s\n", match); /* add new line */
gtk_text_buffer_get_end_iter (log_buffer, &end);
gtk_text_buffer_insert (log_buffer, &end, logline, -1);
if (options.data.no_markup)
gtk_text_buffer_insert (log_buffer, &end, logline, -1);
else
gtk_text_buffer_insert_markup (log_buffer, &end, logline, -1);
g_free (logline);
/* scroll to end */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment