diff options
author | Andrea Cimitan <andrea.cimitan@canonical.com> | 2011-08-24 17:36:53 +0200 |
---|---|---|
committer | Andrea Cimitan <andrea.cimitan@canonical.com> | 2011-08-24 17:36:53 +0200 |
commit | 56533c0fe34b8835a5f3ec25eec7ab4bae3eca85 (patch) | |
tree | 1d30eff7323a63a3a6ea369ec1274cddd4858cc1 /src | |
parent | 334e4309729cc5591b7538dc8f40b2845224b09d (diff) | |
download | ayatana-indicator-sound-56533c0fe34b8835a5f3ec25eec7ab4bae3eca85.tar.gz ayatana-indicator-sound-56533c0fe34b8835a5f3ec25eec7ab4bae3eca85.tar.bz2 ayatana-indicator-sound-56533c0fe34b8835a5f3ec25eec7ab4bae3eca85.zip |
Use GTK_STYLE_CLASS_MENU instead hardcoded gchar
Diffstat (limited to 'src')
-rw-r--r-- | src/transport-widget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport-widget.c b/src/transport-widget.c index 100c52c..868a5c1 100644 --- a/src/transport-widget.c +++ b/src/transport-widget.c @@ -1286,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], |