[mythtv] [PATCH] Mythvideo dont come back from selected

j.rios listsjrios at telefonica.net
Sun Nov 7 21:37:30 UTC 2004


Hello,
  Ive been trying to follow this problem and today i finally found where
i could fix it. I dunno if this is the right place to fix it or not. The
problem is that once i have in MythVideo a movie selected ready to play
i can not come back to gallery. Ive fixed the problem managing the event
'ESCAPE' into the VideoSelected:keyPressEvent adding the condition...

----- into void VideoSelected::keyPressEvent(QKeyEvent *e)

        if (action == "SELECT" && allowselect)
        {
            selected(curitem);
            return;
        }
        else if( action == "ESCAPE" )
        {
            exitWin();
            return;
        }
-----

Is this a good way to fix it or should this event managed somewhere
else? for now this is working for me.

btw thanks to all for a great toy :)

greets
Juan Rios





More information about the mythtv-dev mailing list