Skip to content

Commit

Permalink
[layouts] Fix missing map name in map item properties dialog
Browse files Browse the repository at this point in the history
Fixes #18288

(cherry-picked from 2238b42)
  • Loading branch information
nyalldawson committed Mar 6, 2018
1 parent a24e2bd commit d2bf8d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/layout/qgslayoutmapwidget.cpp
Expand Up @@ -596,7 +596,7 @@ void QgsLayoutMapWidget::updateGuiElements()
}

blockAllSignals( true );
mLabel->setText( tr( "Map %1" ).arg( mMapItem->id() ) );
mLabel->setText( mMapItem->displayName() );

whileBlocking( mCrsSelector )->setCrs( mMapItem->presetCrs() );

Expand Down

0 comments on commit d2bf8d0

Please sign in to comment.