Set JPG quality to 100

This commit is contained in:
stojce 2014-01-27 20:59:46 +01:00
parent 40ea552981
commit c82a8a152e

View file

@ -40,7 +40,7 @@ void Snapshot::saveSnapshot(QGLWidget* widget, QString username, glm::vec3 locat
QString fileName = FileUtils::standardPath(SNAPSHOTS_DIRECTORY);
fileName.append(QString(FILENAME_PATH_FORMAT.arg(username, now.toString(DATETIME_FORMAT), formattedLocation)));
shot.save(fileName);
shot.save(fileName, 0, 100);
}