[mythtv-commits] Ticket #5308: idleTimer.start

MythTV mythtv at cvs.mythtv.org
Sun May 4 10:53:54 UTC 2008


#5308: idleTimer.start
-------------------------------+--------------------------------------------
 Reporter:  huge at ax dot ru  |       Owner:  ijr    
     Type:  defect             |      Status:  new    
 Priority:  minor              |   Milestone:  unknown
Component:  mythtv             |     Version:  head   
 Severity:  medium             |     Mlocked:  0      
-------------------------------+--------------------------------------------
 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
                      {

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/5308>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list