Skip to content

Commit

Permalink
Do not auto-play upon opening playlist/timeline item as clip.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Sep 3, 2014
1 parent 5ca8e9b commit f935805
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,8 +752,7 @@ void MainWindow::openVideo()

void MainWindow::openCut(void* producer, int in, int out)
{
double speed = MLT.producer()? MLT.producer()->get_speed(): 0;
m_player->setPauseAfterOpen(speed == 0);
m_player->setPauseAfterOpen(true);
open((Mlt::Producer*) producer);
m_player->setIn(in);
m_player->setOut(out);
Expand Down

0 comments on commit f935805

Please sign in to comment.