cc-panel-list: Remove use of sidebar-icon style

Generally sidebar icons aren't dimmed anymore.
This commit is contained in:
Christopher Davis 2021-12-17 13:09:20 -08:00 committed by Georges Basile Stavracas Neto
parent 6aa1361a5d
commit d72d23a1cd
2 changed files with 0 additions and 8 deletions

View file

@ -293,7 +293,6 @@ row_data_new (CcPanelCategory category,
/* Icon */
image = gtk_image_new_from_icon_name (icon);
gtk_style_context_add_class (gtk_widget_get_style_context (image), "sidebar-icon");
gtk_grid_attach (GTK_GRID (grid), image, 0, 0, 1, 1);
@ -314,7 +313,6 @@ row_data_new (CcPanelCategory category,
if (has_sidebar)
{
image = gtk_image_new_from_icon_name ("go-next-symbolic");
gtk_style_context_add_class (gtk_widget_get_style_context (image), "sidebar-icon");
gtk_grid_attach (GTK_GRID (grid), image, 2, 0, 1, 1);
}