Skip to content

Commit

Permalink
Fix mouse usage in popups, thanks to Paul for spotting the error. Fix…
Browse files Browse the repository at this point in the history
…es #9667.

    (cherry picked from commit afb8995)
  • Loading branch information
stuartm authored and Paul Harrison committed Mar 16, 2011
1 parent cf09840 commit ae52b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuitype.cpp
Expand Up @@ -1002,7 +1002,7 @@ void MythUIType::LoadNow(void)
*/
bool MythUIType::ContainsPoint(const QPoint &point) const
{
if (m_Area.contains(point - m_Area.topLeft()))
if (m_Area.contains(point))
return true;

return false;
Expand Down

0 comments on commit ae52b58

Please sign in to comment.