diff options
| author | Jabiertxof <jtx@jtx> | 2016-11-26 01:30:18 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx> | 2016-11-26 01:30:18 +0000 |
| commit | 75966adbcbc90a011afd5e48ad1101a8f5a64e61 (patch) | |
| tree | 56645104ee7705d5bb140bd0f4e600bc17970716 /src/widgets/dash-selector.cpp | |
| parent | Provide a way to update a legacy document to account for the 90 to 96 dpi cha... (diff) | |
| download | inkscape-75966adbcbc90a011afd5e48ad1101a8f5a64e61.tar.gz inkscape-75966adbcbc90a011afd5e48ad1101a8f5a64e61.zip | |
Add stroke dash empty to allow render only fills and markers. Tested in FF and Chromium
(bzr r15274)
Diffstat (limited to 'src/widgets/dash-selector.cpp')
| -rw-r--r-- | src/widgets/dash-selector.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/widgets/dash-selector.cpp b/src/widgets/dash-selector.cpp index 522705cec..05f3ab44c 100644 --- a/src/widgets/dash-selector.cpp +++ b/src/widgets/dash-selector.cpp @@ -174,11 +174,13 @@ void SPDashSelector::set_dash (int ndash, double *dash, double o) else if(ndash==0) { pos = 0; } - if(pos>=0){ this->set_data("pattern", dashes[pos]); this->dash_combo.set_active(pos); this->offset->set_value(o); + if(pos == 10) { + this->offset->set_value(10.0); + } } else { // Hit a custom pattern in the SVG, write it into the combobox. count--; // the one slot for custom patterns |
