diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 91b4cc5923..48e1c4b266 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1457,6 +1457,10 @@ void Application::dropEvent(QDropEvent *event) { if (url.url().toLower().endsWith(SNAPSHOT_EXTENSION)) { snapshotPath = url.toLocalFile(); break; + } else if (url.url().toLower().endsWith(SVO_EXTENSION)) { + emit svoImportRequested(url.url()); + event->acceptProposedAction(); + return; } }