From 2e195a04fe7f2ea92886df99d29a63b3139b91b4 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 18 Sep 2017 19:26:39 -0400 Subject: src/tab-chrome.c: Apply tooltips to whole tab history list items --- (limited to 'src') 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; } -- cgit v0.9.1