From 0205afea985c753c6400eba9634f679863d085c0 Mon Sep 17 00:00:00 2001 From: Diego Escalante Urrelo Date: Mon, 10 Jan 2011 19:59:16 -0500 Subject: ephy-location-entry: GdkRGBA colors are doubles Bug #636501 --- lib/widgets/ephy-location-entry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 3e78fa328..f7ea32e97 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -89,8 +89,8 @@ static const GtkTargetEntry url_drag_types [] = { EPHY_DND_TEXT_TYPE, 0, 2 } }; -static const GdkRGBA fallback_bg_color = { 0, 0xf7f7, 0xf7f7, 0xbebe }; /* yellow-ish */ -static const GdkRGBA fallback_fg_color = { 0, 0, 0, 0 }; /* black */ +static const GdkRGBA fallback_bg_color = { 0.97, 0.97, 0.74, 1 }; /* yellow-ish */ +static const GdkRGBA fallback_fg_color = { 0, 0, 0, 1 }; /* black */ static void ephy_location_entry_class_init (EphyLocationEntryClass *klass); static void ephy_location_entry_init (EphyLocationEntry *le); -- cgit v1.2.3