diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-06-17 20:51:09 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-08-05 00:31:06 +0000 |
| commit | a989bfb85b3827e97881b096c11f4fa6beb58496 (patch) | |
| tree | 80f3c8301a3d5eddf1f0b9eabdeafdb3256ab9a4 /src/selection-chemistry.cpp | |
| parent | Refactor with Tav help (diff) | |
| download | inkscape-a989bfb85b3827e97881b096c11f4fa6beb58496.tar.gz inkscape-a989bfb85b3827e97881b096c11f4fa6beb58496.zip | |
Fixes compiling bugs
Diffstat (limited to 'src/selection-chemistry.cpp')
| -rw-r--r-- | src/selection-chemistry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index 3e1bb56aa..366ccbe33 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -2157,7 +2157,7 @@ std::vector<SPItem*> sp_get_same_style(SPItem *sel, std::vector<SPItem*> &src, S if (type == SP_STROKE_STYLE_DASHES|| type == SP_STROKE_STYLE_ALL || type==SP_STYLE_ALL) { match = (sel_style->stroke_dasharray.set == iter_style->stroke_dasharray.set); if (sel_style->stroke_dasharray.set && iter_style->stroke_dasharray.set) { - match = (sel_style->stroke_dasharray.values == iter_style->stroke_dasharray.values); + match = (sel_style->stroke_dasharray == iter_style->stroke_dasharray); } } match_g = match_g && match; |
