diff options
author | raveit65 <[email protected]> | 2018-03-30 15:54:04 +0200 |
---|---|---|
committer | monsta <[email protected]> | 2018-04-05 14:14:09 +0300 |
commit | abaa1e43a86bcc2a764ea15d6b3394b8889cfb3f (patch) | |
tree | cd148e9a68164b62a4bc5714567f13896726fb71 | |
parent | 247a5fd0d4a3c7bf5845c089b42d5578f7478a9d (diff) | |
download | mate-desktop-abaa1e43a86bcc2a764ea15d6b3394b8889cfb3f.tar.bz2 mate-desktop-abaa1e43a86bcc2a764ea15d6b3394b8889cfb3f.tar.xz |
mate-rr-labeler: fix font-color for dark themes
Fixes https://github.com/ubuntu-mate/ubuntu-mate-artwork/issues/29
-rw-r--r-- | libmate-desktop/mate-rr-labeler.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libmate-desktop/mate-rr-labeler.c b/libmate-desktop/mate-rr-labeler.c index d0b9090..a1786a5 100644 --- a/libmate-desktop/mate-rr-labeler.c +++ b/libmate-desktop/mate-rr-labeler.c @@ -380,7 +380,7 @@ create_label_window (MateRRLabeler *labeler, MateRROutputInfo *output, GdkRGBA * GtkWidget *widget; char *str; char *display_name; - GdkColor black = { 0, 0, 0, 0 }; + GdkRGBA black = { 0, 0, 0, 1.0 }; int x,y; window = gtk_window_new (GTK_WINDOW_POPUP); @@ -421,7 +421,7 @@ create_label_window (MateRRLabeler *labeler, MateRROutputInfo *output, GdkRGBA * * theme's colors, since the label is always shown against a light * pastel background. See bgo#556050 */ - gtk_widget_modify_fg (widget, gtk_widget_get_state_flags (widget), &black); + gtk_widget_override_color (widget, gtk_widget_get_state_flags (widget), &black); gtk_container_add (GTK_CONTAINER (window), widget); @@ -519,7 +519,7 @@ mate_rr_labeler_hide (MateRRLabeler *labeler) * mate_rr_labeler_get_rgba_for_output: * @labeler: A #MateRRLabeler * @output: Output device (i.e. monitor) to query - * @rgba_out: (out): Color of selected monitor. + * @color_out: (out): Color of selected monitor. * * Get the color used for the label on a given output (monitor). */ |