[epiphany] embed-shell: Schedule thumbnail updates after updating overview



commit 9ec18488ccce40d4eb692f5cbeb9471ea5a1b202
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sun Dec 4 21:03:11 2016 -0600

    embed-shell: Schedule thumbnail updates after updating overview
    
    Otherwise we do not display a thumbnail for new overview items when a
    previous overview item is removed, even if we have a snapshot in the
    snapshot database. This doesn't and cannot fix the case where no
    snapshot exists -- sometimes we just really don't have a usable snapshot
    -- but usually we do have a snapshot and this fixes the general case.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=775612

 embed/ephy-embed-shell.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index 135657e..ba29ab0 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -198,6 +198,9 @@ history_service_query_urls_cb (EphyHistoryService *service,
 
     ephy_web_extension_proxy_history_set_urls (web_extension, urls);
   }
+
+  for (l = urls; l; l = g_list_next (l))
+    ephy_embed_shell_schedule_thumbnail_update (shell, (EphyHistoryURL *)l->data);
 }
 
 static void


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]