Skip to content
Permalink
Browse files
Applied patch to correct selection issue (ticket #3259)
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14824 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Dec 2, 2010
1 parent 597392f commit 08e193c
Showing 1 changed file with 2 additions and 1 deletion.
@@ -655,7 +655,8 @@ bool QgsDelimitedTextProvider::boundsCheck( QgsGeometry *geom )
if ( mSelectionRectangle.isEmpty() || !mFetchGeom )
return true;

return geom->boundingBox().intersects( mSelectionRectangle );
return geom->boundingBox().intersects( mSelectionRectangle )
&& geom->intersects(mSelectionRectangle);;
}

int QgsDelimitedTextProvider::capabilities() const

0 comments on commit 08e193c

Please sign in to comment.