Navigation Menu

Skip to content

Commit

Permalink
Applied patch to correct selection issue (ticket #3259)
Browse files Browse the repository at this point in the history
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.
3 changes: 2 additions & 1 deletion src/providers/delimitedtext/qgsdelimitedtextprovider.cpp
Expand Up @@ -655,7 +655,8 @@ bool QgsDelimitedTextProvider::boundsCheck( QgsGeometry *geom )
if ( mSelectionRectangle.isEmpty() || !mFetchGeom ) if ( mSelectionRectangle.isEmpty() || !mFetchGeom )
return true; return true;


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


int QgsDelimitedTextProvider::capabilities() const int QgsDelimitedTextProvider::capabilities() const
Expand Down

0 comments on commit 08e193c

Please sign in to comment.