(*** This bug was imported into bugs.kde.org ***) Package: konqueror Version: 12/29/2000 cvs Severity: normal Installed from: src 1) Open a webpage in Konqueror 2) Scroll the page so a LINK is adjacent to a border of the webpage frame. *That is you can move your mouse right off the link and onto a adjacent widget.* 3) When moving your mouse over the link you will notice information in the lower left corner of the browser. (email to: etc...) 4) Try scrolling off the link and onto konqueror's widget frame. The infomation will remain on the lower left corner until you scroll over some other part of the html document. (submitted via bugs.kde.org)
Reproducible with HEAD.
*** Bug 58869 has been marked as a duplicate of this bug. ***
reproducable with CVS Head from 3.11.03
Reproducable with KDE CVS ( 5. April 2004 )
Reproducable with KDE CVS (2005-01-25)
Needs to call resetHoverText when a Leave event is received. Too complicated for me though!
Can that be left as a feature. I find it quite useful.
SVN commit 617626 by mkoller: BUG: 17846 reset hover text when mouse leaves khtml view M +4 -1 khtmlview.cpp --- branches/KDE/3.5/kdelibs/khtml/khtmlview.cpp #617625:617626 @@ -1820,8 +1820,11 @@ } } - if ( e->type() == QEvent::Leave && d->cursor_icon_widget ) + if ( e->type() == QEvent::Leave ) { + if ( d->cursor_icon_widget ) d->cursor_icon_widget->hide(); + m_part->resetHoverText(); + } QWidget *view = viewport();