Summary: | konqueror link information does not disappear | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | npapadon |
Component: | khtml | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | minor | CC: | frederic.bages |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Other | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
npapadon
2000-12-30 01:00:13 UTC
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(); |