mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[ui] No update of gallery while jogging in SequencePlayer timeline
This commit is contained in:
parent
90fd95320a
commit
a113898773
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue