Skip to content

Commit

Permalink
[ui] SphereDetection: output is now directly the filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan authored and jmelou committed Aug 26, 2024
1 parent cfa12bf commit cf24a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshroom/ui/qml/Viewer/Viewer2D.qml
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ FocusScope {
json = null
if (activeNode.attribute("autoDetect").value) {
// auto detection enabled
var jsonPath = activeNode.attribute("output").value + "/detection.json"
var jsonPath = activeNode.attribute("output").value
Request.get(Filepath.stringToUrl(jsonPath), function(xhr) {
if (xhr.readyState === XMLHttpRequest.DONE) {
try {
Expand Down

0 comments on commit cf24a66

Please sign in to comment.