From 5547d1f9537962d21a54dcfe2f78c000837b6397 Mon Sep 17 00:00:00 2001 From: Harrissou Sant-anna Date: Sun, 20 Sep 2020 09:32:09 +0200 Subject: [PATCH] Fix tooltip of "Apply Changes" button in Handle unavailable layers dialog If not successful, the remaining unavailable layers are not removed from the project; "Apply changes" can be used as many times as you want. --- src/app/qgshandlebadlayers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qgshandlebadlayers.cpp b/src/app/qgshandlebadlayers.cpp index 60682ec0409..7419a6f217d 100644 --- a/src/app/qgshandlebadlayers.cpp +++ b/src/app/qgshandlebadlayers.cpp @@ -89,7 +89,7 @@ QgsHandleBadLayers::QgsHandleBadLayers( const QList &layers ) mAutoFindButton->setToolTip( tr( "Attempts to automatically find the layers based on the file name (can be slow)." ) ); buttonBox->addButton( mAutoFindButton, QDialogButtonBox::ActionRole ); mApplyButton = new QPushButton( tr( "Apply Changes" ) ); - mApplyButton->setToolTip( tr( "Apply fixes to unavailable layers (remaining unavailable layers will be removed from the project)." ) ); + mApplyButton->setToolTip( tr( "Apply fixes to unavailable layers and load them in the project if the new path is correct." ) ); buttonBox->addButton( mApplyButton, QDialogButtonBox::ActionRole ); connect( mLayerList, &QTableWidget::itemSelectionChanged, this, &QgsHandleBadLayers::selectionChanged );