[ui] Max available memory exposed for Sequence Player

This commit is contained in:
Aurore LAFAURIE 2024-05-29 15:12:27 +02:00
parent 277b9643b0
commit a60dc8a5e2

View file

@ -347,17 +347,17 @@ FloatingPane {
} }
MaterialToolButton { MaterialToolButton {
id: syncButton id: infoButton
text: MaterialIcons.sync text: MaterialIcons.settings
font.pointSize: 11 font.pointSize: 11
padding: 2 padding: 2
onClicked: syncViewerMenu.open() onClicked: infoMenu.open()
checkable: true checkable: true
checked: syncViewerMenu.visible checked: infoMenu.visible
Menu { Menu {
id: syncViewerMenu id: infoMenu
width: 270 width: 270
y: parent.height y: parent.height
x: -width + parent.width x: -width + parent.width
@ -396,6 +396,10 @@ FloatingPane {
ToolTip.visible: hovered ToolTip.visible: hovered
ToolTip.delay: 100 ToolTip.delay: 100
} }
MenuItem {
text: "Max Available Memory : " + viewer.maxAvailableRam + " GB"
}
} }
} }
} }