diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2012-12-14 00:01:57 +0000 |
|---|---|---|
| committer | Jabiertxo Arraiza Cenoz <jtx@jtx.marker.es> | 2012-12-14 00:01:57 +0000 |
| commit | afcec343e905389d2645115d60f14dfd45f5f2d0 (patch) | |
| tree | cf3a5203cf9409eccca98e3b6fda5225faa5af2f /src/widgets/pencil-toolbar.cpp | |
| parent | Fix for 1086225 : Command line PDF export fails if FeFlood filter primitive i... (diff) | |
| download | inkscape-afcec343e905389d2645115d60f14dfd45f5f2d0.tar.gz inkscape-afcec343e905389d2645115d60f14dfd45f5f2d0.zip | |
bzr history lost by a killed merge
(bzr r11950.1.1)
Diffstat (limited to 'src/widgets/pencil-toolbar.cpp')
| -rw-r--r-- | src/widgets/pencil-toolbar.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/widgets/pencil-toolbar.cpp b/src/widgets/pencil-toolbar.cpp index d0e71d2b0..7e28f7c8c 100644 --- a/src/widgets/pencil-toolbar.cpp +++ b/src/widgets/pencil-toolbar.cpp @@ -139,7 +139,14 @@ static void sp_add_freehand_mode_toggle(GtkActionGroup* mainActions, GObject* ho 1, _("Create Spiro path"), 2, INKSCAPE_ICON("path-mode-spiro"), -1 ); - + //BSpline + 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 ); + //BSpline if (!tool_is_pencil) { gtk_list_store_append( model, &iter ); gtk_list_store_set( model, &iter, |
