Skip to content

Commit

Permalink
Tweak string formatting for consistency with other indicators
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 6, 2018
1 parent 93ce435 commit 1c33261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgslayertreeviewmemoryindicator.cpp
Expand Up @@ -72,7 +72,7 @@ std::unique_ptr< QgsLayerTreeViewIndicator > QgsLayerTreeViewMemoryIndicatorProv
{
std::unique_ptr< QgsLayerTreeViewIndicator > indicator = qgis::make_unique< QgsLayerTreeViewIndicator >( this );
indicator->setIcon( mIcon );
indicator->setToolTip( tr( "Temporary scratch layer only<br><b>Contents will be discarded after closing this project</b>" ) );
indicator->setToolTip( tr( "<b>Temporary scratch layer only!</b><br>Contents will be discarded after closing this project" ) );
mIndicators.insert( indicator.get() );
return indicator;
}
Expand Down

0 comments on commit 1c33261

Please sign in to comment.