We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 601fbc5 + 6b6f620 commit a6d9623Copy full SHA for a6d9623
meshroom/ui/qml/Viewer/SequencePlayer.qml
@@ -403,4 +403,15 @@ FloatingPane {
403
font: fpsTextInput.font
404
text: "100 FPS"
405
}
406
+
407
+ // Action to play/pause the sequence player
408
+ Action {
409
+ id: playPauseAction
410
411
+ shortcut: "Space"
412
413
+ onTriggered: {
414
+ m.playing = !m.playing;
415
+ }
416
417
meshroom/ui/qml/Viewer/Viewer2D.qml
@@ -1512,4 +1512,14 @@ FocusScope {
1512
1513
1514
1515
1516
+ // Actions for Metadata overlay
1517
1518
+ id: metadataAction
1519
1520
+ shortcut: "I"
1521
1522
+ metadataCB.checked = !metadataCB.checked
1523
1524
1525
0 commit comments