Tweak string formatting for consistency with other indicators

This commit is contained in:
Nyall Dawson 2018-08-02 19:29:42 +10:00
parent 93ce435c8a
commit 1c33261ef0

View File

@ -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;
}