mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-05 21:02:42 +02:00
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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user