From 7ca9e06178c842f4624b090f2e0dbf068a9f708f Mon Sep 17 00:00:00 2001 From: Claudio Saavedra Date: Fri, 31 Aug 2012 12:56:04 +0300 Subject: ephy-embed-shell: load the new thumbnail frame and use it in the overview store --- embed/ephy-embed-shell.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'embed/ephy-embed-shell.c') diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c index 99ed4f579..692962268 100644 --- a/embed/ephy-embed-shell.c +++ b/embed/ephy-embed-shell.c @@ -210,6 +210,7 @@ EphyFrecentStore * ephy_embed_shell_get_frecent_store (EphyEmbedShell *shell) { GdkPixbuf *default_icon; + GdkPixbuf *frame; g_return_val_if_fail (EPHY_IS_EMBED_SHELL (shell), NULL); @@ -217,13 +218,16 @@ ephy_embed_shell_get_frecent_store (EphyEmbedShell *shell) { shell->priv->frecent_store = ephy_frecent_store_new (); default_icon = ephy_embed_shell_get_overview_icon ("missing-thumbnail.png"); + frame = ephy_embed_shell_get_overview_icon ("thumbnail-frame.png"); g_object_set (shell->priv->frecent_store, "history-service", ephy_embed_shell_get_global_history_service (shell), "history-length", 10, "default-icon", default_icon, + "icon-frame", frame, NULL); g_object_unref (default_icon); + g_object_unref (frame); } return shell->priv->frecent_store; -- cgit v1.2.3