diff options
| author | VinÃcius dos Santos Oliveira <vini.ipsmaker@gmail.com> | 2014-05-08 00:59:39 +0000 |
|---|---|---|
| committer | VinÃcius dos Santos Oliveira <vini.ipsmaker@gmail.com> | 2014-05-08 00:59:39 +0000 |
| commit | 267adec8dfa7797915cff84b463fef5f9570a6e4 (patch) | |
| tree | 2580dea1021dff4f4cf56f750c978fe251de0868 /src/widgets/pencil-toolbar.cpp | |
| parent | Documentation. Advanced tutorial update (not fully translated). (diff) | |
| parent | adding const _pathmanipulatos staff to handles (handles also have tips) (diff) | |
| download | inkscape-267adec8dfa7797915cff84b463fef5f9570a6e4.tar.gz inkscape-267adec8dfa7797915cff84b463fef5f9570a6e4.zip | |
Merging Jabier's spirolive+bspline branch
(bzr r13341.2.1)
Diffstat (limited to 'src/widgets/pencil-toolbar.cpp')
| -rw-r--r-- | src/widgets/pencil-toolbar.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/widgets/pencil-toolbar.cpp b/src/widgets/pencil-toolbar.cpp index 682de8594..772107101 100644 --- a/src/widgets/pencil-toolbar.cpp +++ b/src/widgets/pencil-toolbar.cpp @@ -104,7 +104,12 @@ static void sp_add_freehand_mode_toggle(GtkActionGroup* mainActions, GObject* ho 1, _("Create Spiro path"), 2, INKSCAPE_ICON("path-mode-spiro"), -1 ); - + gtk_list_store_append( model, &iter ); + gtk_list_store_set( model, &iter, + 0, _("BSpline"), + 1, _("Create BSpline path"), + 2, INKSCAPE_ICON("path-mode-bspline"), + -1 ); if (!tool_is_pencil) { gtk_list_store_append( model, &iter ); gtk_list_store_set( model, &iter, |
