From bce29f5a9aa2c720359dcc9fc201431324cf406f Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 25 Jan 2012 00:40:21 +0000 Subject: [PATCH] Fix bug where "Play current line" would not stop at the end of the line if video was already playing Originally committed to SVN as r6353. --- aegisub/src/video_context.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aegisub/src/video_context.cpp b/aegisub/src/video_context.cpp index 85c89da6e..6114a8c41 100644 --- a/aegisub/src/video_context.cpp +++ b/aegisub/src/video_context.cpp @@ -360,6 +360,8 @@ void VideoContext::Play() { } void VideoContext::PlayLine() { + Stop(); + AssDialogue *curline = context->selectionController->GetActiveLine(); if (!curline) return;