summaryrefslogtreecommitdiff
path: root/embed/ephy-about-handler.c
diff options
context:
space:
mode:
authorTobias Bernard <tbernard@gnome.org>2019-07-18 13:45:38 +0200
committerTobias Bernard <tbernard@gnome.org>2019-08-04 11:56:27 +0200
commit46206b33fdbd79a436721284c0879e0a1818c98d (patch)
tree370d97380bd75be523a979c799f179f0f05ecac8 /embed/ephy-about-handler.c
parent60e34ee59c897d259cf707c9f0a65c21bef92b9b (diff)
downloadepiphany-46206b33fdbd79a436721284c0879e0a1818c98d.tar.gz
Most visited: fix layout when removing an item
Because of the additional div I had to introduce to make vertical centering work nicely, the overview div is no longer a direct parent to the items themselves. This change takes the new structure into account when adding items to the grid.
Diffstat (limited to 'embed/ephy-about-handler.c')
-rw-r--r--embed/ephy-about-handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-about-handler.c b/embed/ephy-about-handler.c
index ad782a68a..1d010a789 100644
--- a/embed/ephy-about-handler.c
+++ b/embed/ephy-about-handler.c
@@ -398,7 +398,7 @@ history_service_query_urls_cb (EphyHistoryService *history,
"<div id=\"overview\">\n");
g_string_append (data_str,
- "<div class=\"most-visited-grid\">\n");
+ "<div id=\"most-visited-grid\">\n");
for (l = urls; l; l = g_list_next (l)) {
EphyHistoryURL *url = (EphyHistoryURL *)l->data;