From 5fba58c17d8c9f972ff51a350a3a4f1d24057498 Mon Sep 17 00:00:00 2001 From: Thomas Zorroche Date: Thu, 28 Jan 2021 11:47:47 +0100 Subject: [PATCH] [Panorama Viewer] correct ratio for panorama --- meshroom/ui/qml/Viewer/PanoramaViewer.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshroom/ui/qml/Viewer/PanoramaViewer.qml b/meshroom/ui/qml/Viewer/PanoramaViewer.qml index 3703ad62..7cea73c7 100644 --- a/meshroom/ui/qml/Viewer/PanoramaViewer.qml +++ b/meshroom/ui/qml/Viewer/PanoramaViewer.qml @@ -12,7 +12,7 @@ AliceVision.PanoramaViewer { id: root width: 3000 - height: 1000 + height: 1500 visible: (status === Image.Ready) // paintedWidth / paintedHeight / status for compatibility with standard Image @@ -62,7 +62,7 @@ AliceVision.PanoramaViewer { z: 10 Rectangle { width: 3000 - height: 1000 + height: 1500 //color: mouseAreaPano.containsMouse? "red" : "green" color: "transparent" MouseArea {