We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32606e0 commit 09d8b56Copy full SHA for 09d8b56
src/composer/qgscomposerpicture.cpp
@@ -483,7 +483,7 @@ QWidget *QgsComposerPicture::options ( void )
483
484
QString QgsComposerPicture::pictureDialog ( void )
485
{
486
- QString filters = tr("Pictures") + " ( *.svg *.SVG ";
+ QString filters = tr("Pictures ("); //+ " ( *.svg *.SVG ";
487
QList<QByteArray> formats = QImageWriter::supportedImageFormats();
488
489
for ( int i = 0; i < formats.count(); i++ )
@@ -492,7 +492,7 @@ QString QgsComposerPicture::pictureDialog ( void )
492
QString fltr = " *." + frmt.lower() + " *." + frmt.upper();
493
filters += fltr;
494
}
495
- filters += " )";
+ filters += ");;All other files (*.*)";
496
497
// Retrieve the last used directory
498
QSettings settings;
0 commit comments