core: Add version 23 to XCF switch statement

Resolves #13124
In 3f3b29ba we bumped XCF version to 23 due to
new blending spaces. However, we did not update
the version check switch statement to accept this
version. This patch adds a new case to handle version
23.
This commit is contained in:
Alx Sa 2025-03-15 18:23:07 +00:00
parent a723fe27b3
commit 206273c6b5
1 changed files with 1 additions and 0 deletions

View File

@ -3187,6 +3187,7 @@ gimp_image_get_xcf_version (GimpImage *image,
case 20:
case 21:
case 22:
case 23:
if (gimp_version) *gimp_version = 300;
if (version_string) *version_string = "GIMP 3.0";
break;