mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-05 20:31:56 +02:00
[ui] check box in 2D viewer header bar to enable/disable 8bit viewer
This commit is contained in:
parent
77dd3da040
commit
c21bbd307c
2 changed files with 7 additions and 1 deletions
|
@ -26,7 +26,7 @@ FocusScope {
|
|||
|
||||
property var activeNodeFisheye: _reconstruction ? _reconstruction.activeNodes.get("PanoramaInit").node : null
|
||||
property bool cropFisheye : activeNodeFisheye ? activeNodeFisheye.attribute("useFisheye").value : false
|
||||
property bool enable8bitViewer: MeshroomApp.default8bitViewerEnabled
|
||||
property bool enable8bitViewer: enable8bitViewerAction.checked
|
||||
|
||||
QtObject {
|
||||
id: m
|
||||
|
|
|
@ -138,6 +138,12 @@ Item {
|
|||
checkable: true
|
||||
checked: true && !viewer2D.usePanoramaViewer
|
||||
}
|
||||
Action {
|
||||
id: enable8bitViewerAction
|
||||
text: "Enable 8-bit Viewer"
|
||||
checkable: true
|
||||
checked: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue