[ui] No update of gallery while jogging in SequencePlayer timeline

This commit is contained in:
Aurore LAFAURIE 2024-06-19 17:52:25 +02:00
parent 90fd95320a
commit a113898773

View file

@ -35,7 +35,7 @@ FloatingPane {
function updateReconstructionView() {
if (_reconstruction && m.frame >= 0 && m.frame < sortedViewIds.length) {
if (!m.playing){
if (!m.playing && !frameSlider.pressed){
_reconstruction.selectedViewId = sortedViewIds[m.frame];
} else {
_reconstruction.pickedViewId = sortedViewIds[m.frame];
@ -248,6 +248,12 @@ FloatingPane {
m.frame = value;
}
onPressedChanged: {
if (!pressed) {
updateReconstructionView();
}
}
ToolTip {
parent: frameSlider.handle
visible: frameSlider.hovered