Git commit 7576870d6ecab6cdb133b41916ce2bd4734528a9 by Cyrille Berger. Committed on 14/04/2015 at 16:05. Pushed by berger into branch 'calligra/2.9'. Disable opening 32bit float grayscale TIFF since they crash CCBUG: 344334 M +3 -0 krita/plugins/formats/tiff/kis_tiff_converter.cc http://commits.kde.org/calligra/7576870d6ecab6cdb133b41916ce2bd4734528a9 diff --git a/krita/plugins/formats/tiff/kis_tiff_converter.cc b/krita/plugi= ns/formats/tiff/kis_tiff_converter.cc index 60e299f..dcf124f 100644 --- a/krita/plugins/formats/tiff/kis_tiff_converter.cc +++ b/krita/plugins/formats/tiff/kis_tiff_converter.cc @@ -54,6 +54,9 @@ QPair getColorSpaceForColorType(uint16 = sampletype, uint16 colo if (color_type =3D=3D PHOTOMETRIC_MINISWHITE || color_type =3D=3D PHOT= OMETRIC_MINISBLACK) { if (nbchannels =3D=3D 0) nbchannels =3D 1; extrasamplescount =3D nbchannels - 1; // FIX the extrasamples coun= t in case of + if (sampletype =3D=3D SAMPLEFORMAT_IEEEFP) { + return QPair(); + } if (color_nb_bits <=3D 8) { destDepth =3D 8; return QPair(GrayAColorModelID.id(), Integer= 8BitsColorDepthID.id());