Skip to content

Commit

Permalink
Merge pull request #51 from tomkadwill/master
Browse files Browse the repository at this point in the history
[Fixes bug #1085570] Save image file type not consistent naming for ORA files.
  • Loading branch information
cameronwhite committed Dec 27, 2012
2 parents 330e8e7 + a5d2848 commit e92a79f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pinta.Core/Managers/ImageConverterManager.cs
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public ImageConverterManager ()


// Create all the formats we have our own importers/exporters for // Create all the formats we have our own importers/exporters for
OraFormat oraHandler = new OraFormat (); OraFormat oraHandler = new OraFormat ();
RegisterFormat (new FormatDescriptor ("ora", "OpenRaster", new string[] { "ora" }, oraHandler, oraHandler)); RegisterFormat (new FormatDescriptor ("ora", "OpenRaster", new string[] { "ora", "ORA" }, oraHandler, oraHandler));
} }


public IEnumerable<FormatDescriptor> Formats { get { return formats; } } public IEnumerable<FormatDescriptor> Formats { get { return formats; } }
Expand Down

0 comments on commit e92a79f

Please sign in to comment.