Merge pull request #5661 from DelazJ/patch-3

Ask confirmation before removing a map theme
This commit is contained in:
Matthias Kuhn 2017-11-20 15:57:47 +01:00 committed by GitHub
commit 283220351b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,11 +156,15 @@ void QgsMapThemes::applyState( const QString &presetName )
void QgsMapThemes::removeCurrentPreset()
{
Q_FOREACH ( QAction *a, mMenuPresetActions )
for ( QAction *actionPreset : qgis::as_const( mMenuPresetActions ) )
{
if ( a->isChecked() )
if ( actionPreset->isChecked() )
{
QgsProject::instance()->mapThemeCollection()->removeMapTheme( a->text() );
int res = QMessageBox::question( mMenu, tr( "Remove Theme" ),
trUtf8( "Are you sure you want to remove the existing theme “%1”?" ).arg( actionPreset->text() ),
QMessageBox::Yes | QMessageBox::No, QMessageBox::No );
if ( res == QMessageBox::Yes )
QgsProject::instance()->mapThemeCollection()->removeMapTheme( actionPreset->text() );
break;
}
}