online-accounts: Don't hardcode the text color

With hard coded colors, when an account is selected in the tree view,
the text shows up as black on blue, instead of white on blue.

Fixes: https://bugzilla.gnome.org/671980
This commit is contained in:
Debarshi Ray 2012-05-01 03:11:15 +02:00
parent ca36f361d9
commit 8ba96c7daf

View file

@ -335,8 +335,7 @@ set_values (GoaPanelAccountsModel *model,
g_error_free (error);
}
markup = g_strdup_printf ("<b>%s</b>\n"
"<small><span foreground=\"#555555\">%s</span></small>",
markup = g_strdup_printf ("<b>%s</b>\n<small>%s</small>",
goa_account_get_provider_name (account),
goa_account_get_presentation_identity (account));