diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-11-11 23:54:54 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-12-01 16:17:15 +0000 |
| commit | 7fcdbf91b9d06dffea0591699c8474408b3d02ab (patch) | |
| tree | 992df2f68baf55a0f9ee99c58a1cb4e5c176a0e6 /src/display/drawing-item.cpp | |
| parent | Adding line to move outline (diff) | |
| download | inkscape-7fcdbf91b9d06dffea0591699c8474408b3d02ab.tar.gz inkscape-7fcdbf91b9d06dffea0591699c8474408b3d02ab.zip | |
Improve spliter and add outline mode functionality
Diffstat (limited to 'src/display/drawing-item.cpp')
| -rw-r--r-- | src/display/drawing-item.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/display/drawing-item.cpp b/src/display/drawing-item.cpp index 59a486d52..d3729da94 100644 --- a/src/display/drawing-item.cpp +++ b/src/display/drawing-item.cpp @@ -998,9 +998,9 @@ DrawingItem::pick(Geom::Point const &p, double delta, unsigned flags) if (!(flags & PICK_STICKY) && !(_visible && _sensitive)) return nullptr; - bool outline = _drawing.outline(); + bool outline = _drawing.outline() || _drawing.getOutlineSensitive(); - if (!_drawing.outline()) { + if (!_drawing.outline() && !_drawing.getOutlineSensitive()) { // pick inside clipping path; if NULL, it means the object is clipped away there if (_clip) { DrawingItem *cpick = _clip->pick(p, delta, flags | PICK_AS_CLIP); |
