ignore raw image support reported by the pixbuf loader
authorVladimir Nadvornik <nadvornik@suse.cz>
Mon, 26 Sep 2011 13:02:05 +0000 (15:02 +0200)
committerVladimir Nadvornik <nadvornik@suse.cz>
Tue, 27 Sep 2011 12:19:02 +0000 (14:19 +0200)
src/filefilter.c

index add9647..25c6d96 100644 (file)
@@ -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);