From 01cab516b23a974bb628ba20d5834a8c254a3736 Mon Sep 17 00:00:00 2001 From: Alexander Schwinn Date: Sat, 16 Jun 2018 00:03:48 +0200 Subject: [PATCH] Use thumbnail size "large" instead of "normal" --- thunar/thunar-file.c | 4 ++-- thunar/thunar-thumbnailer.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/thunar/thunar-file.c b/thunar/thunar-file.c index 6ace63f7..1fc65259 100644 --- a/thunar/thunar-file.c +++ b/thunar/thunar-file.c @@ -3567,7 +3567,7 @@ thunar_file_get_thumbnail_path (ThunarFile *file) /* build and check if the thumbnail is in the new location */ file->thumbnail_path = g_build_path ("/", g_get_user_cache_dir(), - "thumbnails", "normal", + "thumbnails", "large", filename, NULL); if (!g_file_test(file->thumbnail_path, G_FILE_TEST_EXISTS)) @@ -3576,7 +3576,7 @@ thunar_file_get_thumbnail_path (ThunarFile *file) g_free(file->thumbnail_path); file->thumbnail_path = g_build_filename (xfce_get_homedir (), ".thumbnails", - "normal", filename, NULL); + "large", filename, NULL); if(!g_file_test(file->thumbnail_path, G_FILE_TEST_EXISTS)) { diff --git a/thunar/thunar-thumbnailer.c b/thunar/thunar-thumbnailer.c index 703a5848..ffdb59eb 100644 --- a/thunar/thunar-thumbnailer.c +++ b/thunar/thunar-thumbnailer.c @@ -408,7 +408,7 @@ thunar_thumbnailer_begin_job (ThunarThumbnailer *thumbnailer, thunar_thumbnailer_dbus_call_queue (thumbnailer->thumbnailer_proxy, (const gchar *const *)uris, (const gchar *const *)mime_hints, - "normal", "foreground", 0, + "large", "foreground", 0, NULL, thunar_thumbnailer_queue_async_reply, job); -- 2.11.0