From e080df349c1569af9911f1ea356bf2ad0344de9f Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Thu, 26 May 2016 22:22:50 +0200 Subject: [PATCH] libgimpwidgets: set the color config on GimpColorSelection's color areas so they are color managed. --- libgimpwidgets/gimpcolorselection.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libgimpwidgets/gimpcolorselection.c b/libgimpwidgets/gimpcolorselection.c index d730c4aac0..37a1da57ae 100644 --- a/libgimpwidgets/gimpcolorselection.c +++ b/libgimpwidgets/gimpcolorselection.c @@ -537,6 +537,10 @@ gimp_color_selection_set_config (GimpColorSelection *selection, config); gimp_color_selector_set_config (GIMP_COLOR_SELECTOR (selection->scales), config); + gimp_color_area_set_color_config (GIMP_COLOR_AREA (selection->old_color), + config); + gimp_color_area_set_color_config (GIMP_COLOR_AREA (selection->new_color), + config); } /* private functions */