summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-18 19:33:04 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-18 19:33:04 (EDT)
commit402bde1446f7af77ea8f70b43891167ad2cef0d0 (patch)
tree92263e7b180d90cfe9f29e5fab0be347c4177883 /src
parent2e195a04fe7f2ea92886df99d29a63b3139b91b4 (diff)
downloadmarquee-402bde1446f7af77ea8f70b43891167ad2cef0d0.zip
marquee-402bde1446f7af77ea8f70b43891167ad2cef0d0.tar.gz
marquee-402bde1446f7af77ea8f70b43891167ad2cef0d0.tar.bz2
src/tab-chrome.c: Left-align tab history list item labels
Diffstat (limited to 'src')
-rw-r--r--src/tab-chrome.c2
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);