aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2011-01-11 08:59:16 +0800
committerDiego Escalante Urrelo <descalante@igalia.com>2011-01-11 08:59:16 +0800
commit0205afea985c753c6400eba9634f679863d085c0 (patch)
tree48b3cbbce06f29bde3c321409b632607566ea0db /lib/widgets
parent876c61da26b86b46e8f4117fe687dbaff4faebdc (diff)
downloadgsoc2013-epiphany-0205afea985c753c6400eba9634f679863d085c0.tar
gsoc2013-epiphany-0205afea985c753c6400eba9634f679863d085c0.tar.gz
gsoc2013-epiphany-0205afea985c753c6400eba9634f679863d085c0.tar.bz2
gsoc2013-epiphany-0205afea985c753c6400eba9634f679863d085c0.tar.lz
gsoc2013-epiphany-0205afea985c753c6400eba9634f679863d085c0.tar.xz
gsoc2013-epiphany-0205afea985c753c6400eba9634f679863d085c0.tar.zst
gsoc2013-epiphany-0205afea985c753c6400eba9634f679863d085c0.zip
ephy-location-entry: GdkRGBA colors are doubles
Bug #636501
Diffstat (limited to 'lib/widgets')
-rw-r--r--lib/widgets/ephy-location-entry.c4
1 files 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);