mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 17:40:40 -05:00
since the title is going to be treated as markup, escape it. Fixes
2005-12-27 Elijah Newren <newren@gmail.com> * src/tabpopup.c (meta_ui_tab_popup_new): since the title is going to be treated as markup, escape it. Fixes #324846.
This commit is contained in:
parent
a710235e86
commit
5e9f20e94c
@ -1,3 +1,8 @@
|
|||||||
|
2005-12-27 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
|
* src/tabpopup.c (meta_ui_tab_popup_new): since the title is going
|
||||||
|
to be treated as markup, escape it. Fixes #324846.
|
||||||
|
|
||||||
2005-12-25 Kang Jeong-Hee <Keizi@mail.co.kr>
|
2005-12-25 Kang Jeong-Hee <Keizi@mail.co.kr>
|
||||||
|
|
||||||
* po/ko.po: Updated Korean translation.
|
* po/ko.po: Updated Korean translation.
|
||||||
|
@ -208,11 +208,11 @@ meta_ui_tab_popup_new (const MetaTabEntry *entries,
|
|||||||
gchar *tmp;
|
gchar *tmp;
|
||||||
if (entries[i].hidden)
|
if (entries[i].hidden)
|
||||||
{
|
{
|
||||||
tmp = g_strdup_printf ("[%s]", entries[i].title);
|
tmp = g_markup_printf_escaped ("[%s]", entries[i].title);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
tmp = g_strdup (entries[i].title);
|
tmp = g_markup_printf_escaped ("%s", entries[i].title);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (entries[i].demands_attention)
|
if (entries[i].demands_attention)
|
||||||
|
Loading…
Reference in New Issue
Block a user