From 1c33261ef0c8aead2d10d0e937439345305d2907 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Thu, 2 Aug 2018 19:29:42 +1000 Subject: [PATCH] Tweak string formatting for consistency with other indicators --- src/app/qgslayertreeviewmemoryindicator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qgslayertreeviewmemoryindicator.cpp b/src/app/qgslayertreeviewmemoryindicator.cpp index 80ec4c80620..23ed53aa9c4 100644 --- a/src/app/qgslayertreeviewmemoryindicator.cpp +++ b/src/app/qgslayertreeviewmemoryindicator.cpp @@ -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
Contents will be discarded after closing this project" ) ); + indicator->setToolTip( tr( "Temporary scratch layer only!
Contents will be discarded after closing this project" ) ); mIndicators.insert( indicator.get() ); return indicator; }