Skip to content

Commit

Permalink
Allow thumbnail picture from last playback position.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Jan 17, 2022
1 parent 3fb672a commit aa095d6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mythtv/libs/libmythtv/previewgenerator.cpp
Expand Up @@ -634,7 +634,6 @@ bool PreviewGenerator::LocalPreviewRun(void)
{
m_programInfo.MarkAsInUse(true, kPreviewGeneratorInUseID);
m_programInfo.SetIgnoreProgStart(true);
m_programInfo.SetIgnoreLastPlayPos(true);

float aspect = 0;
std::chrono::seconds captime = m_captureTime;
Expand All @@ -646,7 +645,7 @@ bool PreviewGenerator::LocalPreviewRun(void)
LOG(VB_GENERAL, LOG_INFO, "Preview from time spec");
else
{
capframe = m_programInfo.QueryBookmark();
capframe = m_programInfo.QueryStartMark();
if (capframe > 0)
{
LOG(VB_GENERAL, LOG_INFO,
Expand Down

0 comments on commit aa095d6

Please sign in to comment.