diff options
-rw-r--r-- | src/tab-label.c | 4 | ||||
-rw-r--r-- | src/toolbars/navigation/uri-entry.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/tab-label.c b/src/tab-label.c index c837961..f86b05e 100644 --- a/src/tab-label.c +++ b/src/tab-label.c @@ -175,7 +175,7 @@ update_image(MqTabLabel *tab_label, GdkPixbuf *favicon) gtk_image_set_from_pixbuf(GTK_IMAGE(tab_label->image), favicon); } else { gtk_image_set_from_icon_name(GTK_IMAGE(tab_label->image), - "text-x-generic", GTK_ICON_SIZE_BUTTON); + "text-html", GTK_ICON_SIZE_BUTTON); } } @@ -334,7 +334,7 @@ mq_tab_label_init(MqTabLabel *tab_label) tab_label->title = "New tab"; /* Set up tab image. */ - tab_label->image = gtk_image_new_from_icon_name("text-x-generic", + tab_label->image = gtk_image_new_from_icon_name("text-html", GTK_ICON_SIZE_BUTTON); /* Set up tab label. */ diff --git a/src/toolbars/navigation/uri-entry.c b/src/toolbars/navigation/uri-entry.c index 8ae818a..af3e0c6 100644 --- a/src/toolbars/navigation/uri-entry.c +++ b/src/toolbars/navigation/uri-entry.c @@ -279,7 +279,7 @@ mq_uri_entry_init(MqUriEntry *uri_entry) gtk_entry_set_placeholder_text(GTK_ENTRY(uri_entry->uri_entry), "URI..."); gtk_entry_set_icon_from_icon_name(GTK_ENTRY(uri_entry->uri_entry), - GTK_ENTRY_ICON_PRIMARY, "text-x-generic"); + GTK_ENTRY_ICON_PRIMARY, "text-html"); gtk_entry_set_progress_fraction(GTK_ENTRY(uri_entry->uri_entry), 0.0); g_signal_connect(uri_entry->uri_entry, "activate", G_CALLBACK(uri_activate_cb), uri_entry); |