missed an fbx block

This commit is contained in:
Elisa Lupin-Jimenez 2017-11-07 17:12:39 -08:00
parent 9a09ffe12f
commit 1ceec17405

View file

@ -2702,7 +2702,6 @@ bool Application::importFromZIP(const QString& filePath) {
}
// thread-safe
void Application::onPresent(quint32 frameCount) {
bool expected = false;
if (_pendingIdleEvent.compare_exchange_strong(expected, true)) {
@ -6467,13 +6466,6 @@ void Application::addAssetToWorldAddEntity(QString filePath, QString mapping) {
// Close progress message box.
addAssetToWorldInfoDone(filenameFromPath(filePath));
}
// Delete temporary directories created from downloads
if (filePath.contains(".fbx")) {
QString tempPath = filePath.remove(filePath.section("/", -1));
qCDebug(interfaceapp) << "Removing temporary path: " << tempPath;
QDir(tempPath).removeRecursively();
}
}
void Application::addAssetToWorldCheckModelSize() {