summaryrefslogtreecommitdiffstats
path: root/src/display/drawing-text.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2018-12-01 16:59:23 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2018-12-01 16:59:23 +0000
commit1769e99ff8cfae073a22c03e196c6f9a4c4d9ced (patch)
treed1e3400afdb91bc29ede02ba937cfdf4b41bdf99 /src/display/drawing-text.cpp
parentFix merging (diff)
downloadinkscape-1769e99ff8cfae073a22c03e196c6f9a4c4d9ced.tar.gz
inkscape-1769e99ff8cfae073a22c03e196c6f9a4c4d9ced.zip
Fix coding style
Diffstat (limited to 'src/display/drawing-text.cpp')
-rw-r--r--src/display/drawing-text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display/drawing-text.cpp b/src/display/drawing-text.cpp
index e1e9fecc5..d80985163 100644
--- a/src/display/drawing-text.cpp
+++ b/src/display/drawing-text.cpp
@@ -187,7 +187,7 @@ DrawingItem *DrawingGlyphs::_pickItem(Geom::Point const &p, double /*delta*/, un
bool invisible = (ggroup->_nrstyle.fill.type == NRStyle::PAINT_NONE) &&
(ggroup->_nrstyle.stroke.type == NRStyle::PAINT_NONE);
- if (_font && _bbox && (_drawing.outline() || _drawing.getOutlineSensitive() || !invisible) ) {
+ if (_font && _bbox && (_drawing.outline() || _drawing.getOutlineSensitive() || !invisible)) {
// With text we take a simple approach: pick if the point is in a character bbox
Geom::Rect expanded(_pick_bbox);
// FIXME, why expand by delta? When is the next line needed?