diff --git a/meshroom/nodes/aliceVision/PanoramaPostProcessing.py b/meshroom/nodes/aliceVision/PanoramaPostProcessing.py index ea859024a8..54d60552a1 100644 --- a/meshroom/nodes/aliceVision/PanoramaPostProcessing.py +++ b/meshroom/nodes/aliceVision/PanoramaPostProcessing.py @@ -102,13 +102,6 @@ class PanoramaPostProcessing(desc.CommandLineNode): ] outputs = [ - desc.File( - name="outputPanorama", - label="Output Panorama", - description="Generated panorama in EXR format.", - semantic="image", - value=lambda attr: desc.Node.internalFolder + attr.node.panoramaName.value, - ), desc.File( name="outputPanoramaPreview", label="Output Panorama Preview", @@ -116,6 +109,13 @@ class PanoramaPostProcessing(desc.CommandLineNode): semantic="image", value=lambda attr: desc.Node.internalFolder + attr.node.previewName.value, ), + desc.File( + name="outputPanorama", + label="Output Panorama", + description="Generated panorama in EXR format.", + semantic="image", + value=lambda attr: desc.Node.internalFolder + attr.node.panoramaName.value, + ), desc.File( name="downscaledPanoramaLevels", label="Downscaled Panorama Levels",