From 860f748ab2f47be2a604f89bd86e9499380f82a8 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Fri, 26 Oct 2012 11:50:17 -0400 Subject: 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 --- configure.in | 2 +- libnautilus-private/nautilus-thumbnails.c | 2 +- 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; -- cgit v1.2.1