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
1 changed files with 1 additions and 1 deletions

View File

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