diff options
| author | Alvin Penner <penner@vaxxine.com> | 2013-01-29 21:00:01 +0000 |
|---|---|---|
| committer | apenner <penner@vaxxine.com> | 2013-01-29 21:00:01 +0000 |
| commit | 2fd49c7b03821f690f088a9478ee4780c211d748 (patch) | |
| tree | 90ad9967c6bbe61de12fc1bf206683b16da980e1 /src/splivarot.cpp | |
| parent | Crash. Partial fix for Bug #1046068 (Inkscape (GTK+/Quartz) calls output exte... (diff) | |
| download | inkscape-2fd49c7b03821f690f088a9478ee4780c211d748.tar.gz inkscape-2fd49c7b03821f690f088a9478ee4780c211d748.zip | |
for Stroke to Path, change minimum stroke width from 0.01 to 0.032 (Bug 820425, comment 5)
Fixed bugs:
- https://launchpad.net/bugs/820425
(bzr r12072)
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 68664cb3c..7cbd92eeb 100644 --- a/src/splivarot.cpp +++ b/src/splivarot.cpp @@ -1002,8 +1002,8 @@ sp_selected_path_outline(SPDesktop *desktop) break; } - if (o_width < 0.01) - o_width = 0.01; + if (o_width < 0.032) + o_width = 0.032; o_miter = i_style->stroke_miterlimit.value * o_width; } |
