diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tab-chrome.c | 4 |
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; } |