diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tab-chrome.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c index 635aee0..88c440d 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -59,6 +59,8 @@ back_forward_list_item_new(WebKitBackForwardListItem *list_item, label = gtk_label_new(webkit_back_forward_list_item_get_title( list_item)); + gtk_widget_set_halign(label, GTK_ALIGN_START); + 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); |