Skip to content

Commit

Permalink
feat: user can import jpeg (#1168)
Browse files Browse the repository at this point in the history
  • Loading branch information
Onetchou committed Aug 9, 2024
1 parent 2c739c9 commit 6b1d110
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/seamly2d/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1770,9 +1770,10 @@ void MainWindow::handleImageTool()
//---------------------------------------------------------------------------------------------------------------------
QString MainWindow::getImageFilename()
{
const QString filter = tr("Images") + QLatin1String(" (*.bmp *.jpg *.png *.svg *.tf);;") +
const QString filter = tr("Images") + QLatin1String(" (*.bmp *.jpg *.jpeg *.png *.svg *.tf);;") +
"BMP" + QLatin1String(" (*.bmp);;") +
"JPG" + QLatin1String(" (*.jpg);;") +
"JPEG" + QLatin1String(" (*.jpeg);;") +
"PNG" + QLatin1String(" (*.png);;") +
"SVG" + QLatin1String(" (*.svg);;") +
"TIF" + QLatin1String(" (*.tf)");
Expand Down

0 comments on commit 6b1d110

Please sign in to comment.