summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e4f94a1)
raw | patch | inline | side by side (parent: e4f94a1)
author | johanengelen <johanengelen@users.sourceforge.net> | |
Sun, 18 Nov 2007 14:45:49 +0000 (14:45 +0000) | ||
committer | johanengelen <johanengelen@users.sourceforge.net> | |
Sun, 18 Nov 2007 14:45:49 +0000 (14:45 +0000) |
diff --git a/share/keys/default.xml b/share/keys/default.xml
index cb8044a0a753268ef155668b17d957fe8c33e142..acf45b311cc356a836c57f5c590b285c608dacfc 100644 (file)
--- a/share/keys/default.xml
+++ b/share/keys/default.xml
<bind key="d" modifiers="Alt,Shift" action="EditUnlinkClone" display="true"/>
<bind key="D" modifiers="Alt,Shift" action="EditUnlinkClone" />
- <bind key="d" modifiers="Shift" action="EditCloneOriginal" display="true"/>
- <bind key="D" modifiers="Shift" action="EditCloneOriginal" />
+ <bind key="d" modifiers="Shift" action="EditCloneSelectOriginal" display="true"/>
+ <bind key="D" modifiers="Shift" action="EditCloneSelectOriginal" />
<bind key="a" modifiers="Ctrl" action="EditSelectAll" display="true"/>
<bind key="A" modifiers="Ctrl" action="EditSelectAll" />
index d478010a3dcede6a8079ff992338c620a7158135..e877c344b03baf6b3266dd1e7b3cf34add420397 100644 (file)
--- a/share/keys/inkscape.xml
+++ b/share/keys/inkscape.xml
<bind key="d" modifiers="Alt,Shift" action="EditUnlinkClone" display="true"/>
<bind key="D" modifiers="Alt,Shift" action="EditUnlinkClone" />
- <bind key="d" modifiers="Shift" action="EditCloneOriginal" display="true"/>
- <bind key="D" modifiers="Shift" action="EditCloneOriginal" />
+ <bind key="d" modifiers="Shift" action="EditCloneSelectOriginal" display="true"/>
+ <bind key="D" modifiers="Shift" action="EditCloneSelectOriginal" />
<bind key="a" modifiers="Ctrl" action="EditSelectAll" display="true"/>
<bind key="A" modifiers="Ctrl" action="EditSelectAll" />
diff --git a/src/menus-skeleton.h b/src/menus-skeleton.h
index 0758eb4c03e371ba73a0cb57c94a1c4554c14d31..1b793919461524da538f55cdd3dc8a9300b6f2a2 100644 (file)
--- a/src/menus-skeleton.h
+++ b/src/menus-skeleton.h
" <verb verb-id=\"EditClone\" />\n"
" <verb verb-id=\"DialogClonetiler\" />\n"
" <verb verb-id=\"EditUnlinkClone\" />\n"
-" <verb verb-id=\"EditCloneOriginal\" />\n"
+" <verb verb-id=\"EditCloneSelectOriginal\" />\n"
" </submenu>\n"
" <verb verb-id=\"SelectionCreateBitmap\" />\n"
" <separator/>\n"
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 1b2ae16b4707d196a9437b33f104cda5253ee5d8..b893240efdc36e93f4fd249a25cdba2be655def6 100644 (file)
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
case SP_VERB_EDIT_UNLINK_CLONE:
sp_selection_unlink();
break;
- case SP_VERB_EDIT_CLONE_ORIGINAL:
+ case SP_VERB_EDIT_CLONE_SELECT_ORIGINAL:
sp_select_clone_original();
break;
case SP_VERB_EDIT_SELECTION_2_MARKER:
N_("Create a clone (a copy linked to the original) of selected object"), "edit_clone"),
new EditVerb(SP_VERB_EDIT_UNLINK_CLONE, "EditUnlinkClone", N_("Unlin_k Clone"),
N_("Cut the selected clone's link to its original, turning it into a standalone object"), "edit_unlink_clone"),
- new EditVerb(SP_VERB_EDIT_CLONE_ORIGINAL, "EditCloneOriginal", N_("Select _Original"),
+ new EditVerb(SP_VERB_EDIT_CLONE_SELECT_ORIGINAL, "EditCloneSelectOriginal", N_("Select _Original"),
N_("Select the object to which the selected clone is linked"), "edit_select_original"),
// TRANSLATORS: Convert selection to a line marker
new EditVerb(SP_VERB_EDIT_SELECTION_2_MARKER, "ObjectsToMarker", N_("Objects to _Marker"),
diff --git a/src/verbs.h b/src/verbs.h
index ccb63daddc866832676ef53126e1b2f427d49b99..b9c05dbc7d0a563a34da6d3767800aeac67cc012 100644 (file)
--- a/src/verbs.h
+++ b/src/verbs.h
SP_VERB_EDIT_DUPLICATE,
SP_VERB_EDIT_CLONE,
SP_VERB_EDIT_UNLINK_CLONE,
- SP_VERB_EDIT_CLONE_ORIGINAL,
+ SP_VERB_EDIT_CLONE_SELECT_ORIGINAL,
SP_VERB_EDIT_SELECTION_2_MARKER,
SP_VERB_EDIT_TILE,
SP_VERB_EDIT_UNTILE,