mirror of https://github.com/GNOME/gimp.git
Bug 775396 - Delete Layer/Channel/Path should be consistently the last...
option in respective dialogs.
This commit is contained in:
parent
efe79d1662
commit
f296988665
|
@ -185,7 +185,7 @@ gimp_channel_tree_view_constructed (GObject *object)
|
|||
GTK_BUTTON (view->priv->toselection_button),
|
||||
GIMP_TYPE_CHANNEL);
|
||||
gtk_box_reorder_child (gimp_editor_get_button_box (GIMP_EDITOR (view)),
|
||||
view->priv->toselection_button, 5);
|
||||
view->priv->toselection_button, 4);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -400,7 +400,7 @@ gimp_layer_tree_view_constructed (GObject *object)
|
|||
GTK_BUTTON (button),
|
||||
GIMP_TYPE_LAYER);
|
||||
gtk_box_reorder_child (gimp_editor_get_button_box (GIMP_EDITOR (layer_view)),
|
||||
button, 7);
|
||||
button, 6);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -158,7 +158,7 @@ gimp_vectors_tree_view_constructed (GObject *object)
|
|||
GTK_BUTTON (view->toselection_button),
|
||||
GIMP_TYPE_VECTORS);
|
||||
gtk_box_reorder_child (gimp_editor_get_button_box (editor),
|
||||
view->toselection_button, 5);
|
||||
view->toselection_button, 4);
|
||||
|
||||
view->tovectors_button =
|
||||
gimp_editor_add_action_button (editor, "vectors",
|
||||
|
@ -167,7 +167,7 @@ gimp_vectors_tree_view_constructed (GObject *object)
|
|||
GDK_SHIFT_MASK,
|
||||
NULL);
|
||||
gtk_box_reorder_child (gimp_editor_get_button_box (editor),
|
||||
view->tovectors_button, 6);
|
||||
view->tovectors_button, 5);
|
||||
|
||||
view->stroke_button =
|
||||
gimp_editor_add_action_button (editor, "vectors",
|
||||
|
@ -179,7 +179,7 @@ gimp_vectors_tree_view_constructed (GObject *object)
|
|||
GTK_BUTTON (view->stroke_button),
|
||||
GIMP_TYPE_VECTORS);
|
||||
gtk_box_reorder_child (gimp_editor_get_button_box (editor),
|
||||
view->stroke_button, 7);
|
||||
view->stroke_button, 6);
|
||||
|
||||
gimp_dnd_svg_dest_add (GTK_WIDGET (tree_view->view), NULL, view);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue