[Bug 51552] young hickory passive popup is cut off
ismore at ieg.com.br
ismore at ieg.com.br
Fri Dec 6 23:07:15 GMT 2002
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=51552
ismore at ieg.com.br changed:
What |Removed |Added
----------------------------------------------------------------------------
Product|noatun |kdelibs
------- Additional Comments From ismore at ieg.com.br 2002-12-07 00:07 -------
I was able to track it down to a bug in KPassivePopup... in that special case, the y
coordinate becomes negative (ie, it is over the top of the screen). The following
fixes it:
void KPassivePopup::moveNear( QRect target )
{
[...] (line 224)
// It wants to be more at the top then the top
if ( y < 0 )
y = 0;
[...]
}
There should be a check for x < 0 as well, I guess.
More information about the kde-multimedia
mailing list