Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[composer] Recenter overview when checkbox enabled
  • Loading branch information
nyalldawson committed Jan 1, 2014
1 parent 353f94c commit 61ad9e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/composer/qgscomposermap.cpp
Expand Up @@ -1031,11 +1031,11 @@ bool QgsComposerMap::readXML( const QDomElement& itemElem, const QDomDocument& d

if ( overviewFrameElem.attribute( "overviewCentered" ).compare( "true", Qt::CaseInsensitive ) == 0 )
{
setOverviewCentered( true );
mOverviewCentered = true;
}
else
{
setOverviewCentered( false );
mOverviewCentered = false;
}

QDomElement overviewFrameSymbolElem = overviewFrameElem.firstChildElement( "symbol" );
Expand Down

0 comments on commit 61ad9e9

Please sign in to comment.