Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
db4e8a91
Commit
db4e8a91
authored
Aug 16, 2009
by
Hugo Beauzee-Luyssen
Browse files
Frame by frame is functionnal, next frame, AND previous frame :)
parent
81329e26
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/Workflow/TrackWorkflow.cpp
View file @
db4e8a91
...
...
@@ -283,6 +283,8 @@ bool TrackWorkflow::getOutput( qint64 currentFrame )
needRepositioning
=
true
;
m_forceRepositionning
=
false
;
}
else
if
(
m_paused
==
true
)
needRepositioning
=
true
;
else
needRepositioning
=
(
abs
(
currentFrame
-
lastFrame
)
>
1
)
?
true
:
false
;
}
...
...
src/renderer/WorkflowRenderer.cpp
View file @
db4e8a91
...
...
@@ -160,11 +160,12 @@ void WorkflowRenderer::setPosition( float newPos )
void
WorkflowRenderer
::
nextFrame
()
{
m_mainWorkflow
->
nextFrame
();
}
void
WorkflowRenderer
::
previousFrame
()
{
m_mainWorkflow
->
previousFrame
();
}
void
WorkflowRenderer
::
pauseMainWorkflow
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment