Skip to content

Commit

Permalink
Terminate Live TV channel input with SELECT
Browse files Browse the repository at this point in the history
In Live TV another channel can be selected by typing in the channel number.
The selection takes effect five seconds after the first character has been entered.
The channel number input can now be terminated by a SELECT action (the Enter key).
  • Loading branch information
kmdewaal committed May 19, 2023
1 parent 68b3686 commit d54bb60
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -3952,6 +3952,10 @@ bool TV::ActiveHandleAction(const QStringList &Actions,
else if (!IsDVDStillFrame && SeekHandleAction(Actions, IsDVD))
{
}
else if (IsActionable(ACTION_SELECT, Actions))
{
CommitQueuedInput();
}
else
{
handled = false;
Expand Down

0 comments on commit d54bb60

Please sign in to comment.