Changeset - fccdfd56cd6a
[Not reviewed]
default
0 2 0
Michael Guravage - 15 years ago 2010-11-30 11:56:52
michael.guravage@cwi.nl
Forgot to add asterisk before our own pdf format.

--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
changed src/ChangeLog
changed src/canvas.cpp
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/ChangeLog
Show inline comments
 
@@ -3,6 +3,7 @@ 2010-11-30    <guravage@petitdru.sen.cwi
 
	* canvas.cpp (snapshot): Preface each image format extension with
 
	an asterisk so files with those extensions to appear in the file
 
	dialogue.
 
	(snapshot): Forgot to add asterisk before our own pdf format.
 

	
 
	* VirtualLeaf-install-windows.nsi: Include imageformats folder
 
	alongside executable.
src/canvas.cpp
Show inline comments
 
@@ -738,7 +738,7 @@ void Main::snapshot()
 
  fd->setDir(par.datadir);
 
  fd->setMode( Q3FileDialog::AnyFile );
 

	
 
  QString supported_file_formats = " .pdf";
 
  QString supported_file_formats = " *.pdf";
 
  foreach (QString format, QImageWriter::supportedImageFormats()){
 
    supported_file_formats += (" *." + format);
 
  }
0 comments (0 inline, 0 general)