Skip to content

Commit

Permalink
MythUIWebBrowser: show the keyboard input status on the status bar wh…
Browse files Browse the repository at this point in the history
…en toggled
  • Loading branch information
Paul Harrison committed May 19, 2013
1 parent 3e5a000 commit 814ea41
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mythtv/libs/libmythui/mythuiwebbrowser.cpp
Expand Up @@ -1516,6 +1516,12 @@ bool MythUIWebBrowser::keyPressEvent(QKeyEvent *event)
if (m_inputToggled)
{
m_browser->keyPressEvent(event);

if (m_inputToggled)
slotStatusBarMessage(tr("Sending key presses to web page"));
else
slotStatusBarMessage(tr("Sending key presses to MythTV"));

return true;
}

Expand Down

0 comments on commit 814ea41

Please sign in to comment.