Index: NSBitmapImageRep.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSBitmapImageRep.m,v
retrieving revision 1.33
diff -u -r1.33 NSBitmapImageRep.m
--- NSBitmapImageRep.m	5 Dec 2002 00:37:01 -0000	1.33
+++ NSBitmapImageRep.m	19 Mar 2003 03:57:56 -0000
@@ -84,8 +84,11 @@
       if (wtypes != nil)
         {
 	  types = [wtypes mutableCopy];
-	  [(NSMutableArray *)types addObject: @"tiff"];
-	  [(NSMutableArray *)types addObject: @"tif"];
+
+	  // We want tiff images to be considered first since they are used extensively in 
+	  // GNUstep.
+	  [(NSMutableArray *)types insertObject: @"tif" atIndex: 0];
+	  [(NSMutableArray *)types insertObject: @"tiff" atIndex: 0];
 	}
       else
 	{
