mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-27 21:47:28 +02:00
[ui] Viewer3D: load all urls from an external file drop
This commit is contained in:
parent
97fcdf67bf
commit
e9682a8ce9
1 changed files with 3 additions and 1 deletions
|
@ -127,7 +127,9 @@ Item {
|
||||||
DropArea {
|
DropArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
keys: ["text/uri-list"]
|
keys: ["text/uri-list"]
|
||||||
onDropped: load3DMedia(drop.urls[0])
|
onDropped: {
|
||||||
|
drop.urls.forEach(function(url){ load3DMedia(url); });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue