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



commit 93efe1eb5658ad0d2f0f67073be51ce4789d9fb8
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 d062765..bc5ea7b 100644
--- a/plug-ins/file-sgi/sgi.c
+++ b/plug-ins/file-sgi/sgi.c
@@ -128,7 +128,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");
 
@@ -147,7 +147,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]