diff options
| author | bulia byak <buliabyak@gmail.com> | 2008-04-17 02:40:23 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2008-04-17 02:40:23 +0000 |
| commit | 59db065f39b26434907a247e3249058176f6034a (patch) | |
| tree | 0d968ff42d814b25b813bdf2b49f76acfa939022 /src/ui/dialog/inkscape-preferences.cpp | |
| parent | fix by kur9kin for endless loop from bug 212332 (diff) | |
| download | inkscape-59db065f39b26434907a247e3249058176f6034a.tar.gz inkscape-59db065f39b26434907a247e3249058176f6034a.zip | |
replace text strings by ints for tools/bounding_box
(bzr r5459)
Diffstat (limited to 'src/ui/dialog/inkscape-preferences.cpp')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 5c451e005..6b9cafcc9 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -340,10 +340,10 @@ void InkscapePreferences::initPageTools() _path_tools = _page_list.get_model()->get_path(iter_tools); _page_tools.add_group_header( _("Bounding box to use:")); - _t_bbox_visual.init ( _("Visual bounding box"), "tools", "bounding_box", "visual", false, 0); + _t_bbox_visual.init ( _("Visual bounding box"), "tools", "bounding_box", "0", false, 0); // 0 means visual _page_tools.add_line( true, "", _t_bbox_visual, "", _("This bounding box includes stroke width, markers, filter margins, etc.")); - _t_bbox_geometric.init ( _("Geometric bounding box"), "tools", "bounding_box", "geometric", true, &_t_bbox_visual); + _t_bbox_geometric.init ( _("Geometric bounding box"), "tools", "bounding_box", "1", true, &_t_bbox_visual); // 1 means geometric _page_tools.add_line( true, "", _t_bbox_geometric, "", _("This bounding box includes only the bare path")); |
