https://bugs.kde.org/show_bug.cgi?id=445285
--- Comment #2 from Timo Gurr <timo.g...@gmail.com> --- (In reply to Halla Rempt from comment #1) > Please try this: > > diff --git a/plugins/dockers/smallcolorselector/kis_small_color_widget.cc > b/plugins/dockers/smallcolorselector/kis_small_color_widget.cc > index 99106fa1c1..4b23367cb6 100644 > --- a/plugins/dockers/smallcolorselector/kis_small_color_widget.cc > +++ b/plugins/dockers/smallcolorselector/kis_small_color_widget.cc > @@ -72,8 +72,11 @@ struct KisSmallColorWidget::Private { > } > > // PQ color space we deliniearize into linear one > - if (result && result->colorModelId() == RGBAColorModelID && > - result->profile()->uniqueId() == > KoColorSpaceRegistry::instance()->p2020PQProfile()->uniqueId()) { > + if (result > + && result->colorModelId() == RGBAColorModelID > + && result->profile() > + && KoColorSpaceRegistry::instance()->p2020PQProfile() > + && result->profile()->uniqueId() == > KoColorSpaceRegistry::instance()->p2020PQProfile()->uniqueId()) { > > result = KoColorSpaceRegistry::instance()-> > colorSpace(RGBAColorModelID.id(), > Float32BitsColorDepthID.id(), > > > Note that it's easier to figure out where a crash happens if you build with > the DEBUG cmake build type. I can confirm that the patch you've provided fixes the issue. Thank you very much again and also for the hint about the build type, I'll make sure to compile with Debug (or RelWithDebInfo) next time before I'll report an issue. -- You are receiving this mail because: You are watching all bug changes.