Skip to content
Snippets Groups Projects
Commit 0886c28e authored by Pierre-Luc Beaudoin's avatar Pierre-Luc Beaudoin
Browse files

Making the name bigger is ugly

parent 12d9a9de
No related branches found
No related tags found
No related merge requests found
......@@ -383,20 +383,10 @@ update_call_tree (call_t * c)
{
// Existing call in the list
gchar * markup;
if (c->state == CALL_STATE_CURRENT)
{
markup = g_markup_printf_escaped("<big><b>%s</b></big>\n"
"%s",
call_get_name(c),
call_get_number(c));
}
else
{
markup = g_markup_printf_escaped("<b>%s</b>\n"
"%s",
call_get_name(c),
call_get_number(c));
}
gtk_list_store_set (store, &iter);
......@@ -450,20 +440,10 @@ update_call_tree_add (call_t * c)
// New call in the list
gchar * markup;
if (c->state == CALL_STATE_CURRENT)
{
markup = g_markup_printf_escaped("<big><b>%s</b></big>\n"
"%s",
call_get_name(c),
call_get_number(c));
}
else
{
markup = g_markup_printf_escaped("<b>%s</b>\n"
"%s",
call_get_name(c),
call_get_number(c));
}
gtk_list_store_append (store, &iter);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment