libgimpwidgets: fix undeclared identifier.

Build for macOS on CI breaks with:

> ../gimp3-2.99.19/libgimpwidgets/gimppickbutton-quartz.c:210:45: error: use of undeclared identifier 'monitor_profile'
>       space = gimp_color_profile_get_space (monitor_profile,
This commit is contained in:
Jehan 2024-04-11 12:39:07 +02:00
parent ef9de3c263
commit 9a353b9db9

View file

@ -207,7 +207,7 @@
if (profile) if (profile)
{ {
space = gimp_color_profile_get_space (monitor_profile, space = gimp_color_profile_get_space (profile,
GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL, GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL,
NULL); NULL);
g_object_unref (profile); g_object_unref (profile);