mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-17 01:54:42 +00:00
yet another small change to get rid of names with spaces in the middle.
Correctly labeled idtf files
This commit is contained in:
parent
2f8d05389f
commit
0cb70ee620
@ -82,7 +82,8 @@ bool U3DIOPlugin::save(const QString &formatName, const QString &fileName, MeshM
|
||||
converterPath += "/IDTFConverter.exe";
|
||||
converterCommandLine = converterPath;
|
||||
#elif defined(Q_OS_MAC)
|
||||
converterCommandLine = converterPath +"/IDTFConverter.sh "+converterPath;
|
||||
converterPath.replace(QString(" "),QString("\\ "));
|
||||
converterCommandLine = "\""+converterPath +"/IDTFConverter.sh"+ "\" \"" + converterPath+"\"";
|
||||
converterPath = converterPath +"/IDTFConverter.sh";
|
||||
#endif
|
||||
if (settings.contains("U3D/converter"))
|
||||
@ -124,7 +125,7 @@ QList<MeshIOInterface::Format> U3DIOPlugin::exportFormats() const
|
||||
{
|
||||
QList<Format> formatList;
|
||||
formatList << Format("U3D File Format" ,tr("U3D"));
|
||||
formatList << Format("U3D File Format" ,tr("IDTF"));
|
||||
formatList << Format("IDTF File Format" ,tr("IDTF"));
|
||||
return formatList;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user