Skip to content

Commit

Permalink
MythUIWebBrowser: Fix a problem with making the web page active.
Browse files Browse the repository at this point in the history
Sometimes after displaying two or more popup windows the web page wasn't being
made active again when it was the top widget.
  • Loading branch information
Paul Harrison committed May 11, 2011
1 parent 714cf09 commit f84f268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuiwebbrowser.cpp
Expand Up @@ -1023,7 +1023,7 @@ void MythUIWebBrowser::slotTopScreenChanged(MythScreenType* screen)
}
else
{
bool wasActive = m_active;
bool wasActive = (m_wasActive | m_active);
SetActive(false);
m_wasActive = wasActive;
break;
Expand Down

0 comments on commit f84f268

Please sign in to comment.