summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/inkscape-preferences.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2008-04-17 02:40:23 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2008-04-17 02:40:23 +0000
commit59db065f39b26434907a247e3249058176f6034a (patch)
tree0d968ff42d814b25b813bdf2b49f76acfa939022 /src/ui/dialog/inkscape-preferences.cpp
parentfix by kur9kin for endless loop from bug 212332 (diff)
downloadinkscape-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.cpp4
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"));