Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Update the save 3D map message bar to link to files
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/app/3d/qgs3dmapcanvasdockwidget.cpp
|
@@ -59,7 +59,7 @@ Qgs3DMapCanvasDockWidget::Qgs3DMapCanvasDockWidget( QWidget *parent ) |
|
|
|
|
|
connect( mCanvas, &Qgs3DMapCanvas::savedAsImage, this, [ = ]( const QString fileName ) |
|
|
{ |
|
|
QgisApp::instance()->messageBar()->pushSuccess( tr( "Save as Image" ), tr( "Successfully saved the 3D map to <a href=\"%1\">%2</a>" ).arg( QUrl::fromLocalFile( QFileInfo( fileName ).path() ).toString(), QDir::toNativeSeparators( fileName ) ) ); |
|
|
QgisApp::instance()->messageBar()->pushSuccess( tr( "Save as Image" ), tr( "Successfully saved the 3D map to <a href=\"%1\">%2</a>" ).arg( QUrl::fromLocalFile( fileName ).toString(), QDir::toNativeSeparators( fileName ) ) ); |
|
|
} ); |
|
|
|
|
|
mLabelPendingJobs = new QLabel( this ); |
|
|