Add handling for opening an .svo using interface

This commit is contained in:
Ryan Huffman 2015-03-11 15:42:16 -07:00
parent c3c2a75f48
commit 0048b91311

View file

@ -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;
}
}