[gimp] app: set the color config on the color picker tool dialog's color area



commit ca990287a7411db11c52123d66d9c7ed2b571b14
Author: Michael Natterer <mitch gimp org>
Date:   Tue May 31 12:51:14 2016 +0200

    app: set the color config on the color picker tool dialog's color area

 app/tools/gimpcolorpickertool.c |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)
---
diff --git a/app/tools/gimpcolorpickertool.c b/app/tools/gimpcolorpickertool.c
index e05aeb3..c9b0c07 100644
--- a/app/tools/gimpcolorpickertool.c
+++ b/app/tools/gimpcolorpickertool.c
@@ -25,7 +25,11 @@
 
 #include "tools-types.h"
 
+#include "config/gimpcoreconfig.h"
+
+#include "core/gimp.h"
 #include "core/gimpdrawable.h"
+#include "core/gimptoolinfo.h"
 
 #include "widgets/gimpcolorframe.h"
 #include "widgets/gimphelp-ids.h"
@@ -321,7 +325,8 @@ gimp_color_picker_tool_picked (GimpColorTool      *color_tool,
 static void
 gimp_color_picker_tool_info_create (GimpColorPickerTool *picker_tool)
 {
-  GimpTool         *tool = GIMP_TOOL (picker_tool);
+  GimpTool         *tool    = GIMP_TOOL (picker_tool);
+  GimpContext      *context = GIMP_CONTEXT (tool->tool_info->tool_options);
   GimpDisplayShell *shell;
   GtkWidget        *hbox;
   GtkWidget        *frame;
@@ -385,6 +390,8 @@ gimp_color_picker_tool_info_create (GimpColorPickerTool *picker_tool)
                          GIMP_COLOR_AREA_LARGE_CHECKS :
                          GIMP_COLOR_AREA_FLAT,
                          GDK_BUTTON1_MASK | GDK_BUTTON2_MASK);
+  gimp_color_area_set_color_config (GIMP_COLOR_AREA (picker_tool->color_area),
+                                    context->gimp->config->color_management);
   gtk_widget_set_size_request (picker_tool->color_area, 48, -1);
   gtk_drag_dest_unset (picker_tool->color_area);
   gtk_container_add (GTK_CONTAINER (frame), picker_tool->color_area);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]