From 4e158779db653b683ef1b8e6e6427562f2600240 Mon Sep 17 00:00:00 2001 From: Peter Hofmann Date: Mon, 27 Apr 2020 18:21:54 +0200 Subject: favicon: Initial size should be close to target size GTK_ICON_SIZE_SMALL_TOOLBAR is 16px, according to the docs. --- browser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser.c b/browser.c index b7ff002..6735418 100644 --- a/browser.c +++ b/browser.c @@ -239,7 +239,7 @@ client_new(const gchar *uri, WebKitWebView *related_wv, gboolean show) gtk_box_pack_start(GTK_BOX(c->vbox), c->location, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(c->vbox), c->web_view, TRUE, TRUE, 0); - c->tabicon = gtk_image_new_from_icon_name("text-html", GTK_ICON_SIZE_LARGE_TOOLBAR); + c->tabicon = gtk_image_new_from_icon_name("text-html", GTK_ICON_SIZE_SMALL_TOOLBAR); c->tablabel = gtk_label_new(__NAME__); gtk_label_set_ellipsize(GTK_LABEL(c->tablabel), PANGO_ELLIPSIZE_END); -- cgit v1.2.3