mirror of https://github.com/odrling/Aegisub
NextFrame and PrevFrame no longer requests out of range frames
Originally committed to SVN as r78.
This commit is contained in:
parent
38f62c6906
commit
e080a06834
|
@ -125,7 +125,10 @@ int VideoSlider::GetXAtValue(int value) {
|
|||
// Next frame hotkey
|
||||
void VideoSlider::NextFrame() {
|
||||
if (Display->IsPlaying) return;
|
||||
Display->JumpToFrame(GetValue()+1);
|
||||
|
||||
//don't request out of range frames
|
||||
if (GetValue() < max)
|
||||
Display->JumpToFrame(GetValue()+1);
|
||||
}
|
||||
|
||||
|
||||
|
@ -133,7 +136,10 @@ void VideoSlider::NextFrame() {
|
|||
// Previous frame hotkey
|
||||
void VideoSlider::PrevFrame() {
|
||||
if (Display->IsPlaying) return;
|
||||
Display->JumpToFrame(GetValue()-1);
|
||||
|
||||
//don't request out of range frames
|
||||
if (GetValue() > min)
|
||||
Display->JumpToFrame(GetValue()-1);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue