Skip to content

Commit

Permalink
Replace saving done dialog with message bar
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Feb 23, 2013
1 parent cd3cd94 commit 0dce185
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -4431,7 +4431,9 @@ void QgisApp::saveAsVectorFileGeneral( bool saveOnlySelection )
{
addVectorLayers( QStringList( newFilename ), encoding, "file" );
}
QMessageBox::information( 0, tr( "Saving done" ), tr( "Export to vector file has been completed" ) );
messageBar()->pushMessage( tr( "Saving done" ),
tr( "Export to vector file has been completed" ),
QgsMessageBar::INFO, 3 );
}
else
{
Expand Down

0 comments on commit 0dce185

Please sign in to comment.