Skip to content
Permalink
Browse files
Fix for scalebar not responding to map changes after reading from pro…
…ject file and template

git-svn-id: http://svn.osgeo.org/qgis/trunk@12619 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Dec 25, 2009
1 parent e6faf8f commit 6a4fbd7
Showing 1 changed file with 5 additions and 0 deletions.
@@ -343,6 +343,11 @@ bool QgsComposerScaleBar::readXML( const QDomElement& itemElem, const QDomDocume
{
const QgsComposerMap* composerMap = mComposition->getComposerMapById( mapId );
mComposerMap = composerMap;
if ( mComposerMap )
{
connect( mComposerMap, SIGNAL( extentChanged() ), this, SLOT( updateSegmentSize() ) );
connect( mComposerMap, SIGNAL( destroyed( QObject* ) ), this, SLOT( invalidateCurrentMap() ) );
}
}

refreshSegmentMillimeters();

0 comments on commit 6a4fbd7

Please sign in to comment.