[gnome-flashback] libsound-applet: use non-symbolic icons everywhere



commit d8679b7ccff2dd3452c59e30ce2c421f333a19f6
Author: Alberts Muktupāvels <alberts muktupavels gmail com>
Date:   Sat Oct 25 22:12:27 2014 +0300

    libsound-applet: use non-symbolic icons everywhere

 gnome-flashback/libsound-applet/gvc-channel-bar.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/gnome-flashback/libsound-applet/gvc-channel-bar.c 
b/gnome-flashback/libsound-applet/gvc-channel-bar.c
index 429b335..f79be28 100644
--- a/gnome-flashback/libsound-applet/gvc-channel-bar.c
+++ b/gnome-flashback/libsound-applet/gvc-channel-bar.c
@@ -838,14 +838,14 @@ gvc_channel_bar_class_init (GvcChannelBarClass *klass)
                                          g_param_spec_string ("low-icon-name",
                                                               "Icon Name",
                                                               "Name of icon to display for this stream",
-                                                              "audio-volume-low-symbolic",
+                                                              "audio-volume-low",
                                                               G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
         g_object_class_install_property (object_class,
                                          PROP_HIGH_ICON_NAME,
                                          g_param_spec_string ("high-icon-name",
                                                               "Icon Name",
                                                               "Name of icon to display for this stream",
-                                                              "audio-volume-high-symbolic",
+                                                              "audio-volume-high",
                                                               G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
         g_object_class_install_property (object_class,
                                          PROP_IS_AMPLIFIED,
@@ -882,8 +882,8 @@ gvc_channel_bar_init (GvcChannelBar *bar)
         bar->priv = GVC_CHANNEL_BAR_GET_PRIVATE (bar);
 
         bar->priv->base_volume = ADJUSTMENT_MAX_NORMAL;
-        bar->priv->low_icon_name = g_strdup ("audio-volume-low-symbolic");
-        bar->priv->high_icon_name = g_strdup ("audio-volume-high-symbolic");
+        bar->priv->low_icon_name = g_strdup ("audio-volume-low");
+        bar->priv->high_icon_name = g_strdup ("audio-volume-high");
 
         bar->priv->orientation = GTK_ORIENTATION_VERTICAL;
         bar->priv->adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (0.0,
@@ -916,11 +916,11 @@ gvc_channel_bar_init (GvcChannelBar *bar)
         bar->priv->mute_box = gtk_alignment_new (0.5, 0.5, 0, 0);
         gtk_container_add (GTK_CONTAINER (bar->priv->mute_box), bar->priv->mute_switch);
 
-        bar->priv->low_image = gtk_image_new_from_icon_name ("audio-volume-low-symbolic",
+        bar->priv->low_image = gtk_image_new_from_icon_name ("audio-volume-low",
                                                              GTK_ICON_SIZE_MENU);
         gtk_style_context_add_class (gtk_widget_get_style_context (bar->priv->low_image), "dim-label");
         gtk_widget_set_no_show_all (bar->priv->low_image, TRUE);
-        bar->priv->high_image = gtk_image_new_from_icon_name ("audio-volume-high-symbolic",
+        bar->priv->high_image = gtk_image_new_from_icon_name ("audio-volume-high",
                                                               GTK_ICON_SIZE_MENU);
         gtk_style_context_add_class (gtk_widget_get_style_context (bar->priv->high_image), "dim-label");
         gtk_widget_set_no_show_all (bar->priv->high_image, TRUE);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]