Summary: | "Join the channel foo" stays in status bar even after mouse off /topic # link | ||
---|---|---|---|
Product: | [Applications] konversation | Reporter: | Philippe Cloutier <chealer> |
Component: | general | Assignee: | Konversation Developers <konversation-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 0.19 | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Philippe Cloutier
2006-03-07 05:34:31 UTC
I forgot to mention that this actually applies to any link in /topic...so a URL too will stay in the status bar in the same conditions. SVN commit 555137 by hein: Clear the status bar when the mouse cursor leaves the topic widget. BUG:123209 M +1 -0 ChangeLog M +6 -0 src/topiclabel.cpp M +1 -1 src/topiclabel.h --- trunk/extragear/network/konversation/ChangeLog #555136:555137 @@ -49,6 +49,7 @@ - Significantly cleaned up tab completion code - Fix default custom browser setting - Fix display of some watched nicks online info messages in the ircview +- Fix status bar link info not being cleared when the mouse cursor leaves the topic widget Changes from 0.18 to 0.19 We are extremely pleased to announce the immediate release of Konversation 0.19. The focus --- trunk/extragear/network/konversation/src/topiclabel.cpp #555136:555137 @@ -102,6 +102,12 @@ KActiveLabel::contentsMouseMoveEvent(e); } + void TopicLabel::leaveEvent(QEvent*) + { + emit clearStatusText(); + m_lastStatusText = QString::null; + } + void TopicLabel::openLink(const QString& link) { if (!link.isEmpty()) --- trunk/extragear/network/konversation/src/topiclabel.h #555136:555137 @@ -46,7 +46,7 @@ virtual void contentsMousePressEvent(QMouseEvent *e); virtual void contentsMouseReleaseEvent(QMouseEvent *e); virtual void contentsMouseMoveEvent(QMouseEvent *e); - + virtual void leaveEvent (QEvent*); void resizeEvent(QResizeEvent*); protected slots: |