mirror of
https://github.com/brl/mutter.git
synced 2024-11-09 23:46:33 -05:00
Don't include markup in app not responding dialog
We escaped the <tt> markup, making it visible in the ui.
This commit is contained in:
parent
935e820a1d
commit
c3a6de749b
@ -110,8 +110,8 @@ delete_ping_timeout_func (MetaDisplay *display,
|
||||
if (window_title)
|
||||
{
|
||||
gchar *bold;
|
||||
bold = g_strconcat ("<tt>", window_title, "</tt>", NULL);
|
||||
tmp = g_markup_printf_escaped (_("%s is not responding."), bold);
|
||||
bold = g_markup_printf_escaped ("<tt>%s</tt>", window_title);
|
||||
tmp = g_strdup_printf (_("%s is not responding."), bold);
|
||||
g_free (bold);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user