diff options
| author | Jabiertxof <jabier.arraiza@marker.es> | 2019-02-20 14:42:16 +0000 |
|---|---|---|
| committer | Jabiertxof <jabier.arraiza@marker.es> | 2019-02-20 14:42:16 +0000 |
| commit | 211c530b8aae569ce8d5a17abef5524394e18632 (patch) | |
| tree | 6455fec8615c3a7a4c5a3836313132114e3eb96b /src/object/sp-item-group.cpp | |
| parent | Prevent crashes in node tool (diff) | |
| download | inkscape-211c530b8aae569ce8d5a17abef5524394e18632.tar.gz inkscape-211c530b8aae569ce8d5a17abef5524394e18632.zip | |
Fix for issue 95: Crash on applying Perspective/Envelope LPE to a group
Diffstat (limited to 'src/object/sp-item-group.cpp')
| -rw-r--r-- | src/object/sp-item-group.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/object/sp-item-group.cpp b/src/object/sp-item-group.cpp index c6b6f7340..12d245f77 100644 --- a/src/object/sp-item-group.cpp +++ b/src/object/sp-item-group.cpp @@ -927,6 +927,7 @@ sp_group_perform_patheffect(SPGroup *group, SPGroup *top_group, Inkscape::LivePa { std::vector<SPItem*> const item_list = sp_item_group_item_list(group); for (auto sub_item : item_list) { + std::cout << sub_item << "aaaa" << std::endl; SPGroup *sub_group = dynamic_cast<SPGroup *>(sub_item); if (sub_group) { sp_group_perform_patheffect(sub_group, top_group, lpe, write); |
