mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[ui] Main Menu: GraphEditor visibility control
This commit is contained in:
parent
fe944b0def
commit
63aa19698a
1 changed files with 8 additions and 0 deletions
|
@ -38,6 +38,7 @@ ApplicationWindow {
|
||||||
id: settings_UILayout
|
id: settings_UILayout
|
||||||
category: 'UILayout'
|
category: 'UILayout'
|
||||||
property alias showLiveReconstruction: liveSfMVisibilityCB.checked
|
property alias showLiveReconstruction: liveSfMVisibilityCB.checked
|
||||||
|
property alias showGraphEditor: graphEditorVisibilityCB.checked
|
||||||
}
|
}
|
||||||
|
|
||||||
Dialog {
|
Dialog {
|
||||||
|
@ -262,6 +263,12 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
Menu {
|
Menu {
|
||||||
title: "View"
|
title: "View"
|
||||||
|
MenuItem {
|
||||||
|
id: graphEditorVisibilityCB
|
||||||
|
text: "Graph Editor"
|
||||||
|
checkable: true
|
||||||
|
checked: true
|
||||||
|
}
|
||||||
MenuItem {
|
MenuItem {
|
||||||
id: liveSfMVisibilityCB
|
id: liveSfMVisibilityCB
|
||||||
text: "Live Reconstruction"
|
text: "Live Reconstruction"
|
||||||
|
@ -352,6 +359,7 @@ ApplicationWindow {
|
||||||
Layout.fillHeight: false
|
Layout.fillHeight: false
|
||||||
height: Math.round(parent.height * 0.3)
|
height: Math.round(parent.height * 0.3)
|
||||||
title: "Graph Editor"
|
title: "Graph Editor"
|
||||||
|
visible: settings_UILayout.showGraphEditor
|
||||||
|
|
||||||
Controls1.SplitView {
|
Controls1.SplitView {
|
||||||
orientation: Qt.Horizontal
|
orientation: Qt.Horizontal
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue