summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-18 19:26:39 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-18 19:26:39 (EDT)
commit2e195a04fe7f2ea92886df99d29a63b3139b91b4 (patch)
tree4382b1851261d6e182dd7a028f36bdf25cf38c5a /src
parent9eb1eaea08e813fd51cd2ccb5b2d1a291c835b04 (diff)
downloadmarquee-2e195a04fe7f2ea92886df99d29a63b3139b91b4.zip
marquee-2e195a04fe7f2ea92886df99d29a63b3139b91b4.tar.gz
marquee-2e195a04fe7f2ea92886df99d29a63b3139b91b4.tar.bz2
src/tab-chrome.c: Apply tooltips to whole tab history list items
Diffstat (limited to 'src')
-rw-r--r--src/tab-chrome.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c
index cd06881..635aee0 100644
--- a/src/tab-chrome.c
+++ b/src/tab-chrome.c
@@ -59,11 +59,11 @@ back_forward_list_item_new(WebKitBackForwardListItem *list_item,
label = gtk_label_new(webkit_back_forward_list_item_get_title(
list_item));
- gtk_widget_set_tooltip_text(label,
- webkit_back_forward_list_item_get_uri(list_item));
box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
gtk_box_pack_start(GTK_BOX(box), icon, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 0);
+ gtk_widget_set_tooltip_text(box,
+ webkit_back_forward_list_item_get_uri(list_item));
return box;
}