summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-10-26 11:50:17 -0400
committerCosimo Cecchi <cosimoc@gnome.org>2012-10-26 11:50:17 -0400
commit860f748ab2f47be2a604f89bd86e9499380f82a8 (patch)
treed3af0ff24ccb55e1143fd4fba44ef725c00c8cbc
parentb372040c6e843e903f2ddbfe5ad98e95186b6ce2 (diff)
downloadnautilus-860f748ab2f47be2a604f89bd86e9499380f82a8.tar.gz
thumbnails: default to GNOME_DESKTOP_THUMBNAIL_SIZE_LARGE
So that thumbnailers which support size selection will be able to create higher-resolution versions. Also, bump the minimum GLib required version, since previous versions have a bug that prevents us to use this thumbnail size by default. https://bugzilla.gnome.org/show_bug.cgi?id=686851
-rw-r--r--configure.in2
-rw-r--r--libnautilus-private/nautilus-thumbnails.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 6caf0eba8..c3a417e04 100644
--- a/configure.in
+++ b/configure.in
@@ -2,7 +2,7 @@ AC_PREREQ(2.54)
dnl ===========================================================================
-m4_define(glib_minver, 2.34.0)
+m4_define(glib_minver, 2.35.1)
m4_define(gnome_desktop_minver, 3.0.0)
m4_define(pango_minver, 1.28.3)
m4_define(gtk_minver, 3.5.12)
diff --git a/libnautilus-private/nautilus-thumbnails.c b/libnautilus-private/nautilus-thumbnails.c
index 15ba59ace..a194d0cb4 100644
--- a/libnautilus-private/nautilus-thumbnails.c
+++ b/libnautilus-private/nautilus-thumbnails.c
@@ -138,7 +138,7 @@ get_thumbnail_factory (void)
static GnomeDesktopThumbnailFactory *thumbnail_factory = NULL;
if (thumbnail_factory == NULL) {
- thumbnail_factory = gnome_desktop_thumbnail_factory_new (GNOME_DESKTOP_THUMBNAIL_SIZE_NORMAL);
+ thumbnail_factory = gnome_desktop_thumbnail_factory_new (GNOME_DESKTOP_THUMBNAIL_SIZE_LARGE);
}
return thumbnail_factory;