diff options
| author | Martin Owens <doctormo@gmail.com> | 2014-03-27 19:38:47 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2014-03-27 19:38:47 +0000 |
| commit | 030be9c292b5515e22c5ff5acac028d7f7035d5d (patch) | |
| tree | 646d5b5d51314caa44a3d67ff9474f3d5774c187 /src/verbs.cpp | |
| parent | Changed some return types from gint to bool. (diff) | |
| parent | Get pollar tiling working agains with trunk (diff) | |
| download | inkscape-030be9c292b5515e22c5ff5acac028d7f7035d5d.tar.gz inkscape-030be9c292b5515e22c5ff5acac028d7f7035d5d.zip | |
Merge in Polar Distribute GSoC with up to date trunk fixes
(bzr r13221)
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp index 5914c058a..fad090852 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -1187,9 +1187,9 @@ void SelectionVerb::perform(SPAction *action, void *data) case SP_VERB_SELECTION_BREAK_APART: sp_selected_path_break_apart(dt); break; - case SP_VERB_SELECTION_GRIDTILE: + case SP_VERB_SELECTION_ARRANGE: inkscape_dialogs_unhide(); - dt->_dlg_mgr->showDialog("TileDialog"); + dt->_dlg_mgr->showDialog("TileDialog"); //FIXME: denis: What's this string (to be changed) break; default: break; @@ -2562,8 +2562,8 @@ Verb *Verb::_base_verbs[] = { // Advanced tutorial for more info new SelectionVerb(SP_VERB_SELECTION_BREAK_APART, "SelectionBreakApart", N_("Break _Apart"), N_("Break selected paths into subpaths"), INKSCAPE_ICON("path-break-apart")), - new SelectionVerb(SP_VERB_SELECTION_GRIDTILE, "DialogGridArrange", N_("Ro_ws and Columns..."), - N_("Arrange selected objects in a table"), INKSCAPE_ICON("dialog-rows-and-columns")), + new SelectionVerb(SP_VERB_SELECTION_ARRANGE, "DialogArrange", N_("_Arrange..."), + N_("Arrange selected objects in a table or circle"), INKSCAPE_ICON("dialog-rows-and-columns")), // Layer new LayerVerb(SP_VERB_LAYER_NEW, "LayerNew", N_("_Add Layer..."), N_("Create a new layer"), INKSCAPE_ICON("layer-new")), |
