1
0
mirror of https://git.code.sf.net/p/zint/code synced 2025-12-20 11:27:09 +00:00

Added emf and tif extension to the qt frontend save dialog

This commit is contained in:
Harald Oehlmann
2017-03-29 17:32:19 +02:00
parent 6ac21c39b8
commit eeb921d575
3 changed files with 16 additions and 2 deletions

View File

@@ -78,6 +78,8 @@ void ExportWindow::process()
case 2: suffix = ".svg"; break;
case 3: suffix = ".bmp"; break;
case 4: suffix = ".pcx"; break;
case 5: suffix = ".emf"; break;
case 6: suffix = ".tif"; break;
#else
case 0: suffix = ".png"; break;
case 1: suffix = ".eps"; break;
@@ -85,6 +87,8 @@ void ExportWindow::process()
case 3: suffix = ".svg"; break;
case 4: suffix = ".bmp"; break;
case 5: suffix = ".pcx"; break;
case 6: suffix = ".emf"; break;
case 7: suffix = ".tif"; break;
#endif
}