forgot one bar.

svn path=/trunk/; revision=24220
This commit is contained in:
Michael Natterer
2007-11-22 17:11:05 +00:00
parent 8fba0a2f27
commit 46f2b44f5b

View File

@ -440,6 +440,18 @@ gimp_levels_tool_dialog (GimpImageMapTool *image_map_tool)
G_CALLBACK (GTK_WIDGET_GET_CLASS (tool->input_sliders)->motion_notify_event),
tool->input_sliders);
g_signal_connect_swapped (bar, "button-press-event",
G_CALLBACK (GTK_WIDGET_GET_CLASS (tool->input_sliders)->button_press_event),
tool->input_sliders);
g_signal_connect_swapped (bar, "button-release-event",
G_CALLBACK (GTK_WIDGET_GET_CLASS (tool->input_sliders)->button_release_event),
tool->input_sliders);
g_signal_connect_swapped (bar, "motion-notify-event",
G_CALLBACK (GTK_WIDGET_GET_CLASS (tool->input_sliders)->motion_notify_event),
tool->input_sliders);
/* Horizontal box for input levels spinbuttons */
hbox = gtk_hbox_new (FALSE, 6);
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);