Skip to content

Commit ae6ad4e

Browse files
author
jef
committedAug 26, 2010
followup r14150
git-svn-id: http://svn.osgeo.org/qgis/trunk@14151 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 7840204 commit ae6ad4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/postgres/qgspostgresprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2846,7 +2846,7 @@ QgsRectangle QgsPostgresProvider::extent()
28462846
// dateline extent() returns -180 to 180 (which appears right), but
28472847
// estimated_extent() returns eastern bound of data (>-180) and
28482848
// 180 degrees.
2849-
if ( ext.contains( ",180 " ) )
2849+
if ( !ext.startsWith( "180 ") && ext.contains( ",180 " ) )
28502850
{
28512851
ext.clear();
28522852
}

0 commit comments

Comments
 (0)
Please sign in to comment.