aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/transport-widget.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/transport-widget.c b/src/transport-widget.c
index 0931e1d..ebe8282 100644
--- a/src/transport-widget.c
+++ b/src/transport-widget.c
@@ -1301,7 +1301,16 @@ draw (GtkWidget* button, cairo_t *cr)
color_play_outer[2], color_play_outer_prelight[2],
color_button[4], color_button_shadow, color_inner[2], color_inner_compressed[2];
- style = gtk_widget_get_style (button);
+ /* Use the menu's style instead of that of the menuitem ('button' is a
+ * menuitem that is packed in a menu directly). The menuitem's style
+ * can't be used due to a change in light-themes (lp #1130183).
+ * Menuitems now have a transparent background, which confuses
+ * GtkStyle.
+ *
+ * This is a workaround until this code gets refactored to use
+ * GtkStyleContext.
+ */
+ style = gtk_widget_get_style (gtk_widget_get_parent (button));
bg_color.r = style->bg[0].red/65535.0;
bg_color.g = style->bg[0].green/65535.0;