summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2e01c34)
raw | patch | inline | side by side (parent: 2e01c34)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Wed, 26 Mar 2008 06:06:12 +0000 (06:06 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Wed, 26 Mar 2008 06:06:12 +0000 (06:06 +0000) |
src/widgets/toolbox.cpp | patch | blob | history |
index d3fef1f8dd33a115ab704cd509c0a67eae0afc6b..76bdc7d07acbba61cdac7d69b57103fa60412f80 100644 (file)
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
" <toolitem action='NodeDeleteAction' />"
" <separator />"
" <toolitem action='NodeJoinAction' />"
+ " <toolitem action='NodeBreakAction' />"
+ " <separator />"
" <toolitem action='NodeJoinSegmentAction' />"
" <toolitem action='NodeDeleteSegmentAction' />"
- " <toolitem action='NodeBreakAction' />"
" <separator />"
" <toolitem action='NodeCuspAction' />"
" <toolitem action='NodeSmoothAction' />"
@@ -1076,9 +1077,20 @@ static void sp_node_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions
gtk_action_group_add_action( mainActions, GTK_ACTION(inky) );
}
+ {
+ InkAction* inky = ink_action_new( "NodeBreakAction",
+ _("Break nodes"),
+ _("Break path at selected nodes"),
+ "node_break",
+ Inkscape::ICON_SIZE_SMALL_TOOLBAR );
+ g_signal_connect_after( G_OBJECT(inky), "activate", G_CALLBACK(sp_node_path_edit_break), 0 );
+ gtk_action_group_add_action( mainActions, GTK_ACTION(inky) );
+ }
+
+
{
InkAction* inky = ink_action_new( "NodeJoinSegmentAction",
- _("Join Segment"),
+ _("Join with segment"),
_("Join selected endnodes with a new segment"),
"node_join_segment",
Inkscape::ICON_SIZE_SMALL_TOOLBAR );
@@ -1088,24 +1100,14 @@ static void sp_node_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions
{
InkAction* inky = ink_action_new( "NodeDeleteSegmentAction",
- _("Delete Segment"),
- _("Split path between two non-endpoint nodes"),
+ _("Delete segment"),
+ _("Delete segment between two non-endpoint nodes"),
"node_delete_segment",
Inkscape::ICON_SIZE_SMALL_TOOLBAR );
g_signal_connect_after( G_OBJECT(inky), "activate", G_CALLBACK(sp_node_path_edit_delete_segment), 0 );
gtk_action_group_add_action( mainActions, GTK_ACTION(inky) );
}
- {
- InkAction* inky = ink_action_new( "NodeBreakAction",
- _("Node Break"),
- _("Break path at selected nodes"),
- "node_break",
- Inkscape::ICON_SIZE_SMALL_TOOLBAR );
- g_signal_connect_after( G_OBJECT(inky), "activate", G_CALLBACK(sp_node_path_edit_break), 0 );
- gtk_action_group_add_action( mainActions, GTK_ACTION(inky) );
- }
-
{
InkAction* inky = ink_action_new( "NodeCuspAction",
_("Node Cusp"),