From a8c5cb269996f35d4877e31514956c198c3bd2e5 Mon Sep 17 00:00:00 2001 From: Vladimir Nadvornik Date: Mon, 26 Sep 2011 15:02:05 +0200 Subject: [PATCH] ignore raw image support reported by the pixbuf loader --- src/filefilter.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/filefilter.c b/src/filefilter.c index add96478..25c6d969 100644 --- a/src/filefilter.c +++ b/src/filefilter.c @@ -188,6 +188,14 @@ void filter_add_defaults(void) work = work->next; name = gdk_pixbuf_format_get_name(format); + + if (strcmp(name, "Digital camera RAW") == 0) + { + DEBUG_1("Skipped '%s' from loader", name); + g_free(name); + continue; + } + desc = gdk_pixbuf_format_get_description(format); extensions = gdk_pixbuf_format_get_extensions(format); -- 2.20.1