diff options
| author | Alvin Penner <penner@vaxxine.com> | 2013-01-05 15:44:11 +0000 |
|---|---|---|
| committer | apenner <penner@vaxxine.com> | 2013-01-05 15:44:11 +0000 |
| commit | 81f4c47e7a114dce1fe88da175e7c70083565917 (patch) | |
| tree | be1663781538c1e93e8177b0d419c57264339138 /src/splivarot.cpp | |
| parent | Build. Fix for Bug #910335 ([POSIX] incorrect included header files in src/co... (diff) | |
| download | inkscape-81f4c47e7a114dce1fe88da175e7c70083565917.tar.gz inkscape-81f4c47e7a114dce1fe88da175e7c70083565917.zip | |
visual bbox minimum width (Bug 1094802)
Fixed bugs:
- https://launchpad.net/bugs/1094802
(bzr r12010)
Diffstat (limited to 'src/splivarot.cpp')
| -rw-r--r-- | src/splivarot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/splivarot.cpp b/src/splivarot.cpp index f1360adda..f04d92616 100644 --- a/src/splivarot.cpp +++ b/src/splivarot.cpp @@ -716,8 +716,8 @@ Geom::PathVector* item_outline(SPItem const *item, bool bbox_only) ButtType o_butt; { o_width = i_style->stroke_width.computed; - if (o_width < 0.1) { - o_width = 0.1; + if (o_width < 0.01) { + o_width = 0.01; } o_miter = i_style->stroke_miterlimit.value * o_width; |
