[evolution] Bug 741093 - Force icon sizes when loading theme icons
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Bug 741093 - Force icon sizes when loading theme icons
- Date: Wed, 18 Feb 2015 14:58:37 +0000 (UTC)
commit be691c69375842ce765dd6ab117cf166dce0efbb
Author: Milan Crha <mcrha redhat com>
Date: Wed Feb 18 15:59:54 2015 +0100
Bug 741093 - Force icon sizes when loading theme icons
e-util/e-attachment-button.c | 4 ++--
e-util/e-cell-toggle.c | 2 +-
e-util/e-icon-factory.c | 4 ++--
e-util/e-table-col.c | 2 +-
e-util/e-web-view.c | 2 +-
5 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/e-util/e-attachment-button.c b/e-util/e-attachment-button.c
index 7a99775..8377a27 100644
--- a/e-util/e-attachment-button.c
+++ b/e-util/e-attachment-button.c
@@ -229,11 +229,11 @@ attachment_button_update_pixbufs (EAttachmentButton *button)
pixbuf_expander_open = gtk_icon_theme_load_icon (
icon_theme, "go-down",
- GTK_ICON_SIZE_BUTTON, 0, NULL);
+ GTK_ICON_SIZE_BUTTON, GTK_ICON_LOOKUP_FORCE_SIZE, NULL);
pixbuf_expander_closed = gtk_icon_theme_load_icon (
icon_theme, "go-next",
- GTK_ICON_SIZE_BUTTON, 0, NULL);
+ GTK_ICON_SIZE_BUTTON, GTK_ICON_LOOKUP_FORCE_SIZE, NULL);
g_object_set (
renderer,
diff --git a/e-util/e-cell-toggle.c b/e-util/e-cell-toggle.c
index 0e58c4f..716e70c 100644
--- a/e-util/e-cell-toggle.c
+++ b/e-util/e-cell-toggle.c
@@ -77,7 +77,7 @@ cell_toggle_load_icons (ECellToggle *cell_toggle)
if (icon_name != NULL)
pixbuf = gtk_icon_theme_load_icon (
- icon_theme, icon_name, height, 0, &error);
+ icon_theme, icon_name, height, GTK_ICON_LOOKUP_FORCE_SIZE, &error);
if (error != NULL) {
g_warning ("%s", error->message);
diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c
index 7aac6f6..9263ee4 100644
--- a/e-util/e-icon-factory.c
+++ b/e-util/e-icon-factory.c
@@ -106,7 +106,7 @@ e_icon_factory_get_icon (const gchar *icon_name,
width = height = 16;
pixbuf = gtk_icon_theme_load_icon (
- icon_theme, icon_name, height, 0, &error);
+ icon_theme, icon_name, height, GTK_ICON_LOOKUP_FORCE_SIZE, &error);
if (error != NULL) {
g_warning ("%s", error->message);
@@ -115,7 +115,7 @@ e_icon_factory_get_icon (const gchar *icon_name,
/* Fallback to missing image */
pixbuf = gtk_icon_theme_load_icon (
icon_theme, "image-missing",
- height, 0, &error);
+ height, GTK_ICON_LOOKUP_FORCE_SIZE, &error);
if (error != NULL) {
g_error ("%s", error->message);
diff --git a/e-util/e-table-col.c b/e-util/e-table-col.c
index 5f8a35e..df93282 100644
--- a/e-util/e-table-col.c
+++ b/e-util/e-table-col.c
@@ -42,7 +42,7 @@ etc_load_icon (ETableCol *etc)
gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, &width, &height);
etc->pixbuf = gtk_icon_theme_load_icon (
- icon_theme, etc->icon_name, height, 0, &error);
+ icon_theme, etc->icon_name, height, GTK_ICON_LOOKUP_FORCE_SIZE, &error);
if (error != NULL) {
g_warning ("%s", error->message);
diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c
index 585d9a7..86d81e2 100644
--- a/e-util/e-web-view.c
+++ b/e-util/e-web-view.c
@@ -966,7 +966,7 @@ web_view_create_plugin_widget (EWebView *web_view,
size = 32; /* arbitrary default */
pixbuf = gtk_icon_theme_load_icon (
- icon_theme, uri, size, 0, &error);
+ icon_theme, uri, size, GTK_ICON_LOOKUP_FORCE_SIZE, &error);
if (pixbuf != NULL) {
widget = gtk_image_new_from_pixbuf (pixbuf);
g_object_unref (pixbuf);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]