Skip to content

Commit 2517e13

Browse files
author
gsherman
committed
Applied patch to correct selection issue (ticket #3259)
git-svn-id: http://svn.osgeo.org/qgis/trunk@14824 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e6514c8 commit 2517e13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/providers/delimitedtext/qgsdelimitedtextprovider.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,8 @@ bool QgsDelimitedTextProvider::boundsCheck( QgsGeometry *geom )
655655
if ( mSelectionRectangle.isEmpty() || !mFetchGeom )
656656
return true;
657657

658-
return geom->boundingBox().intersects( mSelectionRectangle );
658+
return geom->boundingBox().intersects( mSelectionRectangle )
659+
&& geom->intersects(mSelectionRectangle);;
659660
}
660661

661662
int QgsDelimitedTextProvider::capabilities() const

0 commit comments

Comments
 (0)