Opened 18 years ago
Closed 18 years ago
#5308 closed defect (fixed)
idleTimer.start
| Reported by: | huge at ax dot ru | Owned by: | danielk |
|---|---|---|---|
| Priority: | minor | Milestone: | unknown |
| Component: | mythtv | Version: | head |
| Severity: | medium | Keywords: | idle timer |
| Cc: | Ticket locked: | no |
Description
trunk/
idleTimer dialog appears after any keypress in TV playback. am testing with following patch now - so far seems to have fixed this problem
svn diff libs/libmythtv/tv_play.cpp Index: libs/libmythtv/tv_play.cpp =================================================================== --- libs/libmythtv/tv_play.cpp (revision 17246) +++ libs/libmythtv/tv_play.cpp (working copy) @@ -2602,7 +2602,10 @@
VERBOSE(VB_IMPORTANT, LOC + "ProcessKeypress() ignoreKeys: "<<ignoreKeys);
#endif DEBUG_ACTIONS
- idleTimer.start();
+ if (db_idle_timeout > 0) + { + idleTimer.start(); + }
bool was_doing_ff_rew = false; bool redisplayBrowseInfo = false;
@@ -2941,7 +2944,10 @@
if (result == 1) {
idleDialogTimer.stop();
- idleTimer.start();
+ if (db_idle_timeout > 0) + { + idleTimer.start(); + }
} else {
Attachments (1)
Change History (3)
by , 18 years ago
| Attachment: | idletimer-patch added |
|---|
comment:1 by , 18 years ago
| Owner: | changed from to |
|---|---|
| Status: | new → accepted |
comment:2 by , 18 years ago
| Resolution: | → fixed |
|---|---|
| Status: | accepted → closed |

(In [17250]) Fixes #5308. Don't start idle Timer if there is no idle timeout set in DB.