mirror of https://github.com/GNOME/gimp.git
app: fix tooltip of propgui color buttons
Source/target arguments of bind_tooltip() were swapped.
This commit is contained in:
parent
8d9580fd2b
commit
7e1fd5983c
|
@ -365,7 +365,7 @@ gimp_prop_widget_new_from_pspec (GObject *config,
|
|||
gtk_box_pack_start (GTK_BOX (widget), button, TRUE, TRUE, 0);
|
||||
gtk_widget_show (button);
|
||||
|
||||
gimp_prop_gui_bind_tooltip (widget, button);
|
||||
gimp_prop_gui_bind_tooltip (button, widget);
|
||||
|
||||
if (create_picker_func)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue