Skip to content

Commit

Permalink
Fix live TV idle timeout not being reset properly after the OSD prompt.
Browse files Browse the repository at this point in the history
Fixes ##9753.

Signed-off-by: Paul Harrison <pharrison@mythtv.org>
  • Loading branch information
kgroeneveld authored and Paul Harrison committed Oct 9, 2011
1 parent 3ad8236 commit 5dd16d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -8084,7 +8084,7 @@ void TV::HandleOSDIdle(PlayerContext *ctx, QString action)
}
if (idleTimerId)
KillTimer(idleTimerId);
idleTimerId = StartTimer(db_idle_timeout * 1000, __LINE__);
idleTimerId = StartTimer(db_idle_timeout, __LINE__);
}
else
{
Expand Down

0 comments on commit 5dd16d2

Please sign in to comment.