diff --git a/meshroom/ui/qml/Viewer/SequencePlayer.qml b/meshroom/ui/qml/Viewer/SequencePlayer.qml index d5790a98..5e3e37ca 100644 --- a/meshroom/ui/qml/Viewer/SequencePlayer.qml +++ b/meshroom/ui/qml/Viewer/SequencePlayer.qml @@ -347,17 +347,17 @@ FloatingPane { } MaterialToolButton { - id: syncButton + id: infoButton - text: MaterialIcons.sync + text: MaterialIcons.settings font.pointSize: 11 padding: 2 - onClicked: syncViewerMenu.open() + onClicked: infoMenu.open() checkable: true - checked: syncViewerMenu.visible + checked: infoMenu.visible Menu { - id: syncViewerMenu + id: infoMenu width: 270 y: parent.height x: -width + parent.width @@ -396,6 +396,10 @@ FloatingPane { ToolTip.visible: hovered ToolTip.delay: 100 } + + MenuItem { + text: "Max Available Memory : " + viewer.maxAvailableRam + " GB" + } } } }