diff options
author | Dan Damian <dandamian@gmx.net> | 2003-03-10 03:32:41 +0800 |
---|---|---|
committer | Dan Damian <dand@src.gnome.org> | 2003-03-10 03:32:41 +0800 |
commit | 64f7879af2f0d3e234926d03ae1f1da711a89329 (patch) | |
tree | 33e3862dcd9cb045d755b4bd9bf5b08138dbcda0 /lib/widgets | |
parent | 2f46d7cd79bda7c11395223411cfe4e28c6111d6 (diff) | |
download | gsoc2013-epiphany-64f7879af2f0d3e234926d03ae1f1da711a89329.tar gsoc2013-epiphany-64f7879af2f0d3e234926d03ae1f1da711a89329.tar.gz gsoc2013-epiphany-64f7879af2f0d3e234926d03ae1f1da711a89329.tar.bz2 gsoc2013-epiphany-64f7879af2f0d3e234926d03ae1f1da711a89329.tar.lz gsoc2013-epiphany-64f7879af2f0d3e234926d03ae1f1da711a89329.tar.xz gsoc2013-epiphany-64f7879af2f0d3e234926d03ae1f1da711a89329.tar.zst gsoc2013-epiphany-64f7879af2f0d3e234926d03ae1f1da711a89329.zip |
Use default widget color for smart bookmarks background. Fixes #107902.
2003-03-09 Dan Damian <dandamian@gmx.net>
* lib/widgets/ephy-autocompletion-window.c:
(ephy_autocompletion_window_init_widgets):
Use default widget color for smart bookmarks background. Fixes
#107902.
* lib/ephy-gui.h:
* lib/ephy-gui.c (shift_color_component),
(ephy_gui_rgb_shift_color), (rgb16_to_rgb),
(ephy_gui_gdk_color_to_rgb), (ephy_gui_rgb_to_color):
Removed unused functions.
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-autocompletion-window.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/widgets/ephy-autocompletion-window.c b/lib/widgets/ephy-autocompletion-window.c index bd3019632..d3c73b493 100644 --- a/lib/widgets/ephy-autocompletion-window.c +++ b/lib/widgets/ephy-autocompletion-window.c @@ -206,7 +206,7 @@ ephy_autocompletion_window_init_widgets (EphyAutocompletionWindow *aw) GtkWidget *frame; GtkWidget *vbox; GdkColor *bg_color; - guint32 base, dark; + GtkStyle *style; GValue v = { 0 }; p->window = gtk_window_new (GTK_WINDOW_POPUP); @@ -257,9 +257,8 @@ ephy_autocompletion_window_init_widgets (EphyAutocompletionWindow *aw) g_value_init (&v, GDK_TYPE_COLOR); g_object_get_property (G_OBJECT (renderer), "cell_background_gdk", &v); bg_color = g_value_peek_pointer (&v); - base = ephy_gui_gdk_color_to_rgb (bg_color); - dark = ephy_gui_rgb_shift_color (base, 0.15); - *bg_color = ephy_gui_gdk_rgb_to_color (dark); + style = gtk_widget_get_style (p->window); + *bg_color = style->bg[GTK_STATE_NORMAL]; g_object_set_property (G_OBJECT (renderer), "cell_background_gdk", &v); p->action_col1 = gtk_tree_view_column_new (); |