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 #9589
  • Loading branch information
stuartm committed Mar 16, 2011
1 parent 6e71eda commit afb8995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuitype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,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 afb8995

Please sign in to comment.