summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGaël Bonithon <gael@xfce.org>2021-12-29 16:08:18 +0100
committerGaël Bonithon <gael@xfce.org>2021-12-29 16:09:59 +0100
commit5affdb5ccdba711ada11f4cde7d7acc840b5a4be (patch)
tree3850b0aa94e1d3ee577d08f2f6096c1d21acc92e /plugins
parent7fdab65f7a2144a7cae4d49bea13cea3644dfc3c (diff)
downloadtumbler-5affdb5ccdba711ada11f4cde7d7acc840b5a4be.tar.gz
Add support for thumbnail size x-large and xx-large
Closes #51.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/xdg-cache/xdg-cache-cache.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/xdg-cache/xdg-cache-cache.c b/plugins/xdg-cache/xdg-cache-cache.c
index f32c1f5..8528cd4 100644
--- a/plugins/xdg-cache/xdg-cache-cache.c
+++ b/plugins/xdg-cache/xdg-cache-cache.c
@@ -138,6 +138,12 @@ xdg_cache_cache_init (XDGCacheCache *cache)
flavor = tumbler_thumbnail_flavor_new_large ();
cache->flavors = g_list_prepend (cache->flavors, flavor);
+
+ flavor = tumbler_thumbnail_flavor_new_x_large ();
+ cache->flavors = g_list_prepend (cache->flavors, flavor);
+
+ flavor = tumbler_thumbnail_flavor_new_xx_large ();
+ cache->flavors = g_list_prepend (cache->flavors, flavor);
}