diff options
author | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-03-28 05:47:20 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-03-31 03:58:55 +0800 |
commit | dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd (patch) | |
tree | 81e74696f12cb34aa1c1b75904ac36db2c606e8e /lib | |
parent | 3d7af5c53c2fd38129534f285675eab11ff5ef4d (diff) | |
download | gsoc2013-epiphany-dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd.tar gsoc2013-epiphany-dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd.tar.gz gsoc2013-epiphany-dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd.tar.bz2 gsoc2013-epiphany-dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd.tar.lz gsoc2013-epiphany-dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd.tar.xz gsoc2013-epiphany-dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd.tar.zst gsoc2013-epiphany-dda0c52f01b5e15cef6dc4a64e6ac4abb086dcdd.zip |
e-location-entry: make bookmark icon follow-state
Makes the symbolic-icon of the completion rows change its color
accordingly to the selection state. With Adwaita: black -> white.
https://bugzilla.gnome.org/show_bug.cgi?id=672927
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index f132c6a56..a6ba5b3fe 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -1059,6 +1059,7 @@ ephy_location_entry_set_completion (EphyLocationEntry *entry, NULL); cell = gtk_cell_renderer_pixbuf_new (); + g_object_set (cell, "follow-state", TRUE, NULL); gtk_cell_layout_pack_end (GTK_CELL_LAYOUT (completion), cell, FALSE); gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT (completion), |