summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hofmann <scm@uninformativ.de>2020-04-27 18:21:54 +0200
committerPeter Hofmann <scm@uninformativ.de>2020-04-27 18:21:54 +0200
commit4e158779db653b683ef1b8e6e6427562f2600240 (patch)
tree27294d9e657a3d7c08dfb4cb6ad03c1ad087e959
parent0ecc03b289b6be63695b54054417f6c1efa2d1f9 (diff)
downloadlariza-4e158779db653b683ef1b8e6e6427562f2600240.tar.gz
favicon: Initial size should be close to target size
GTK_ICON_SIZE_SMALL_TOOLBAR is 16px, according to the docs.
-rw-r--r--browser.c2
1 files changed, 1 insertions, 1 deletions
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);