From: Vladimir Nadvornik Date: Mon, 26 Sep 2011 13:02:05 +0000 (+0200) Subject: ignore raw image support reported by the pixbuf loader X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=e43240dfd58b2df57ce3d20f39c763efe3e1eb65 ignore raw image support reported by the pixbuf loader --- diff --git a/src/filefilter.c b/src/filefilter.c index 33e5d178..da8c221a 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);