GNOME Bugzilla – Bug 121798
please put "Levels" back on the toolbox
Last modified: 2003-09-09 20:47:37 UTC
In the absense of customizability (bug 121797) I really think the Levels tool deserves to be on the main dock/pallette/icon-thingy. I use that tool constantly. It was buried deep in a menu in Gimp 1.2; and in some earlier version of Gimp 1.3.x, it was on the dock, and there was much rejoicing. Now (Gimp 1.3.18) it's off the dock and back in the bowels of the menus again. And there was much sadness.
If at all we'd have to put all color tools back into the toolbox. This won't happen for 2.0 though but there's a chance that we get a customizable toolbox for 2.2.
*** This bug has been marked as a duplicate of 121797 ***
You don't have to put them *all* there, just the one *I* care about :-)
This patch is for *you* only: --- app/tools/tool_manager.c 30 Aug 2003 16:41:35 -0000 1.85 +++ app/tools/tool_manager.c 9 Sep 2003 20:46:42 -0000 @@ -38,6 +38,7 @@ #include "gimpdodgeburntool.h" #include "gimperasertool.h" #include "gimpimagemaptool.h" +#include "gimplevelstool.h" #include "gimppaintbrushtool.h" #include "gimppenciltool.h" #include "gimprectselecttool.h" @@ -578,6 +579,9 @@ tool_manager_register_tool (GType if (g_type_is_a (tool_type, GIMP_TYPE_IMAGE_MAP_TOOL)) tool_info->in_toolbox = FALSE; + + if (g_type_is_a (tool_type, GIMP_TYPE_LEVELS_TOOL)) + tool_info->in_toolbox = TRUE; g_object_set_data (G_OBJECT (tool_info), "gimp-tool-options-gui-func", options_gui_func);