'From Squeak3.7beta of ''1 April 2004'' [latest update: #5948] on 12 June 2004 at 1:27:16 pm'! "Change Set: AnimatedGifExtensionFix-nk Date: 12 June 2004 Author: Ned Konz Fixes a bug that kept the 'gif' extension from being included in ImageReadWriter allTypicalFileExtensions. "! !AnimatedGIFReadWriter class methodsFor: 'image reading/writing' stamp: 'nk 6/12/2004 13:12'! typicalFileExtensions "Answer a collection of file extensions (lowercase) which files that I can read might commonly have" ^#('gif')! ! !AnimatedImageMorph class methodsFor: 'fileIn/Out' stamp: 'nk 6/12/2004 13:11'! fileReaderServicesForFile: fullName suffix: suffix ^((AnimatedGIFReadWriter typicalFileExtensions asSet add: '*'; add: 'form'; yourself) includes: suffix) ifTrue: [ self services ] ifFalse: [#()] ! ! AnimatedGIFReadWriter class removeSelector: #allTypicalFileExtensions!