After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 121798 - please put "Levels" back on the toolbox
please put "Levels" back on the toolbox
Status: RESOLVED DUPLICATE of bug 121797
Product: GIMP
Classification: Other
Component: Tools
1.x
Other Linux
: Normal enhancement
: ---
Assigned To: GIMP Bugs
GIMP Bugs
Depends on:
Blocks:
 
 
Reported: 2003-09-09 01:06 UTC by Jamie Zawinski
Modified: 2003-09-09 20:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jamie Zawinski 2003-09-09 01:06:32 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.
Comment 1 Sven Neumann 2003-09-09 09:12:03 UTC
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.
Comment 2 Sven Neumann 2003-09-09 09:17:41 UTC

*** This bug has been marked as a duplicate of 121797 ***
Comment 3 Jamie Zawinski 2003-09-09 20:26:34 UTC
You don't have to put them *all* there, just the one *I* care about :-)
Comment 4 Sven Neumann 2003-09-09 20:47:37 UTC
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);