Skip to content

Commit

Permalink
Fix for bug in ticket #230 (zoom to all doesn't work when a layer has
Browse files Browse the repository at this point in the history
changed it's extent, e.g., by changing the where clause on a postgres layer).


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5679 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Aug 10, 2006
1 parent 8199a91 commit 561f27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmaplayerset.h
Expand Up @@ -33,7 +33,7 @@ class QgsMapLayerSet
int layerCount() { return mLayerSet.size(); }

//! returns current extent of layer set
QgsRect fullExtent() { return mFullExtent; }
QgsRect fullExtent() { updateFullExtent(); return mFullExtent; }

//! change current layer set
void setLayerSet(const std::deque<QString>& layers);
Expand Down

0 comments on commit 561f27c

Please sign in to comment.