[gimp] Bug 627009 - Image type filter doesn't include .rgba SGI files



commit 74f39616a0caca9a0a2608a666c4c2ef5b2bf267
Author: Michael Schumacher <schumaml gmx de>
Date:   Mon Aug 16 22:34:59 2010 +0200

    Bug 627009 - Image type filter doesn't include .rgba SGI files
    
    Added the rgba file extension to the load and save handler
    registration of the SGI file plug-in.

 plug-ins/file-sgi/sgi.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/plug-ins/file-sgi/sgi.c b/plug-ins/file-sgi/sgi.c
index 463bdfe..bfc8fd2 100644
--- a/plug-ins/file-sgi/sgi.c
+++ b/plug-ins/file-sgi/sgi.c
@@ -127,7 +127,7 @@ query (void)
 
   gimp_register_file_handler_mime (LOAD_PROC, "image/x-sgi");
   gimp_register_magic_load_handler (LOAD_PROC,
-                                    "sgi,rgb,bw,icon",
+                                    "sgi,rgb,rgba,bw,icon",
                                     "",
                                     "0,short,474");
 
@@ -146,7 +146,7 @@ query (void)
                           NULL);
 
   gimp_register_file_handler_mime (SAVE_PROC, "image/x-sgi");
-  gimp_register_save_handler (SAVE_PROC, "sgi,rgb,bw,icon", "");
+  gimp_register_save_handler (SAVE_PROC, "sgi,rgb,rgba,bw,icon", "");
 }
 
 static void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]