Skip to content

Commit

Permalink
Ask confirmation before removing a map theme
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ committed Nov 18, 2017
1 parent af6b4cc commit ecde835
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/app/qgsmapthemes.cpp
Expand Up @@ -156,11 +156,17 @@ 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 )
return;
//remove the selected preset
QgsProject::instance()->mapThemeCollection()->removeMapTheme( actionPreset->text() );
break;
}
}
Expand Down

0 comments on commit ecde835

Please sign in to comment.