diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-08-24 16:09:26 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-08-24 16:09:26 -0400 |
commit | ec7f559d69b40d9186cb307cb0dde5c600bd8c0b (patch) | |
tree | 4c133ed6fd08c505d2616fddad901c1857833b9e /src | |
parent | ab5089f6e8f9940b002e6b2bc334f61f1d862247 (diff) | |
parent | 9b046a6d0370267dcbcc4c01849256fea433d869 (diff) | |
download | ayatana-indicator-sound-ec7f559d69b40d9186cb307cb0dde5c600bd8c0b.tar.gz ayatana-indicator-sound-ec7f559d69b40d9186cb307cb0dde5c600bd8c0b.tar.bz2 ayatana-indicator-sound-ec7f559d69b40d9186cb307cb0dde5c600bd8c0b.zip |
Import upstream version 0.7.6.1
Diffstat (limited to 'src')
-rw-r--r-- | src/transport-widget.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/transport-widget.c b/src/transport-widget.c index 564b76f..22e3b2a 100644 --- a/src/transport-widget.c +++ b/src/transport-widget.c @@ -181,13 +181,17 @@ transport_widget_init (TransportWidget *self) /* create widget path */ spinner_widget_path = gtk_widget_path_new(); - gtk_widget_path_iter_set_name (spinner_widget_path, -1 , "IndicatorSoundSpinner"); + gtk_widget_path_iter_set_name (spinner_widget_path, -1 , "IndicatorSound"); + gtk_widget_path_append_type (spinner_widget_path, GTK_TYPE_MENU); + gtk_widget_path_append_type (spinner_widget_path, GTK_TYPE_MENU_ITEM); gtk_widget_path_append_type (spinner_widget_path, GTK_TYPE_SPINNER); /* create style context and append path */ spinner_style_context = gtk_style_context_new(); gtk_style_context_set_path (spinner_style_context, spinner_widget_path); + gtk_style_context_add_class (spinner_style_context, GTK_STYLE_CLASS_MENU); + gtk_style_context_add_class (spinner_style_context, GTK_STYLE_CLASS_MENUITEM); gtk_style_context_add_class (spinner_style_context, GTK_STYLE_CLASS_SPINNER); } #endif @@ -1282,7 +1286,7 @@ draw (GtkWidget* button, cairo_t *cr) #if GTK_CHECK_VERSION(3, 0, 0) gtk_style_context_add_class (gtk_widget_get_style_context (button), - "menu"); + GTK_STYLE_CLASS_MENU); #endif CairoColorRGB bg_color, fg_color, bg_selected, bg_prelight; CairoColorRGB color_middle[2], color_middle_prelight[2], color_outer[2], color_outer_prelight[2], @@ -1414,7 +1418,7 @@ draw (GtkWidget* button, cairo_t *cr) draw_gradient (cr, RECT_WIDTH / 2 + X, Y + 1, - (RECT_WIDTH - 7)/2, + (RECT_WIDTH - 4.5)/2, MIDDLE_RADIUS, INNER_COMPRESSED_START, INNER_COMPRESSED_END); @@ -1466,7 +1470,7 @@ draw (GtkWidget* button, cairo_t *cr) draw_gradient (cr, RECT_WIDTH / 2 + X, Y + 1, - (RECT_WIDTH - 7)/2, + (RECT_WIDTH - 4.5)/2, MIDDLE_RADIUS, MIDDLE_START_PRELIGHT, MIDDLE_END_PRELIGHT); |