I noticed this when I upgraded qt (It has been discussed on the users list ALOT).  Anyway, what worked for me was pressing ctrl+enter.  My remote works fine, it is only the keybindings.

On 4/12/05, Paul <[EMAIL PROTECTED]> wrote:
>running CVS from a few days ago, and I've noticed for awhile now that
>many buttons ("next", "No, leave my card settings alone", etc) won't
>"click" with enter/space. Well, they change color as if they're
>depressed, but they don't do anything, and if I press any arrow keys, I
>can move to select other buttons.

>After some testing, I've noticed that shortcuts (eg. alt-N for next) do
>still work, but pressing space/enter doesn't.

>Dunno what to do for the ones that don't have a shortcut key. Makes it
>pretty hard to test my pvr-150 if I can't get past the first question in
>mythtvsetup.

>-Chris.

I have just upgraded to Fedora Core 3 myself and have the same problem.
It's already been reported to be a problem with the qt-3.3.4 shipped with
FC3 I think.

I may have found a partial solution to the problem.

In MythPushButton::keyPressEvent() in file mythwidgets.cpp change

if (action == "SELECT")
{
    setDown(true);
    emit pressed();
    handled = true;
}

to

if (action == "SELECT")
{
    animateClick();
    handled = true;
}

It seems to work fine everywhere I tried with one exception. In the
mythmusic playback screen when returning from the popup menu it
causes a seg fault for me every time. Changing the code back again
and mythmusic works ok. So it may not be the right solution but at
least it may give a starting point for someone to workout what's happening
here and come up with a proper fix.

Anybody care to give it a try and report back.

Paul

_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev



--
Nathan Hesson
----
I have gmail invites. Drop a line if you want one
----
AIM - nhesson1
Yahoo - nmhesson
MSN - [EMAIL PROTECTED]
ICQ - 297513015
[EMAIL PROTECTED]
http://www.hessonet.com
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to