diff options
author | monsta <[email protected]> | 2017-04-19 16:46:32 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2017-04-23 16:17:21 +0300 |
commit | 767f1043fe60c1f2ccf6037957755d968eddc0aa (patch) | |
tree | 193b7eb55bf392ca14d3b90291d8992dedde2eaf | |
parent | f33f26e625f3f60c8f2e8444c2b78105317a063d (diff) | |
download | caja-767f1043fe60c1f2ccf6037957755d968eddc0aa.tar.bz2 caja-767f1043fe60c1f2ccf6037957755d968eddc0aa.tar.xz |
Open With dialog: force icon size
fixes https://github.com/mate-desktop/caja/issues/735
-rw-r--r-- | libcaja-private/caja-open-with-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcaja-private/caja-open-with-dialog.c b/libcaja-private/caja-open-with-dialog.c index 6208cb59..c2932993 100644 --- a/libcaja-private/caja-open-with-dialog.c +++ b/libcaja-private/caja-open-with-dialog.c @@ -526,7 +526,7 @@ get_pixbuf_for_icon (GIcon *icon) *p = 0; } pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), - icon_no_extension, 24, 0, NULL); + icon_no_extension, 24, GTK_ICON_LOOKUP_FORCE_SIZE, NULL); g_free (icon_no_extension); } } |