summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <[email protected]>2024-02-22 10:54:32 +0100
committerQt Cherry-pick Bot <[email protected]>2024-02-24 09:42:40 +0000
commit62e1607703d9d1fbfd0f1f1f4e6c350ef14dec09 (patch)
tree121b0a7be68042079a35984cf5ffdd728183a6df
parent82653080aa51286445821678b12c751a01ec2656 (diff)
Fix support for Input color spaces
Not really a common use-case and shouldnt be in images anyway, but we have the code to support it, except it had a typo in it. Change-Id: I8585eaf7be82f13e61c94430743d765359fa48fe Reviewed-by: Tor Arne Vestbø <[email protected]> (cherry picked from commit b697de79b041cd47e86b578a3a119fb3e7b62f71) Reviewed-by: Qt Cherry-pick Bot <[email protected]> (cherry picked from commit 50417e36dddab3fd040168dc00e61b714bad7568) (cherry picked from commit b8618d1726cefc9d9a7bc6fbe9a5bc98c1c8df4c)
-rw-r--r--src/gui/painting/qicc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/painting/qicc.cpp b/src/gui/painting/qicc.cpp
index ccc01da68ad..d0c4b69f29b 100644
--- a/src/gui/painting/qicc.cpp
+++ b/src/gui/painting/qicc.cpp
@@ -63,7 +63,7 @@ enum class ColorSpaceType : quint32 {
};
enum class ProfileClass : quint32 {
- Input = IccTag('s', 'c', 'r', 'n'),
+ Input = IccTag('s', 'c', 'n', 'r'),
Display = IccTag('m', 'n', 't', 'r'),
// Not supported:
Output = IccTag('p', 'r', 't', 'r'),