Bug 132980 - status bar explanation is not cleaned when hovering over a menu item without explanation
Summary: status bar explanation is not cleaned when hovering over a menu item without ...
Status: RESOLVED FIXED
Alias: None
Product: konversation
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Konversation Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-25 18:34 UTC by Albert Astals Cid
Modified: 2006-08-25 19:19 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Albert Astals Cid 2006-08-25 18:34:28 UTC
Version:           0.19+ #3140 (using KDE 3.5.4, compiled sources)
Compiler:          Target: x86_64-linux-gnu
OS:                Linux (x86_64) release 2.6.15-26-amd64-k8

How to reproduce:
* Open konversation
* Put the mouse over URL Catcher
* Statusbar gets text "List all urls ..."
* Now move mouse up to Watched Nicks Online
* Statusbar text is still "List all urls ..."

What do i expect:
* When moving the mouse to a item that has no explanation like Watched Nicks Online the statusbar text should be cleared.
Comment 1 Eike Hein 2006-08-25 19:19:51 UTC
SVN commit 577140 by hein:

Clear status bar main label temp text when the action
collection hands us an empty description.
BUG:132980


 M  +2 -0      konversationstatusbar.cpp  
 M  +1 -0      server.cpp  


--- trunk/extragear/network/konversation/src/konversationstatusbar.cpp #577139:577140
@@ -96,6 +96,8 @@
         m_tempMainLabelText = text;
         m_mainLabel->setText(text);
     }
+    else
+        clearMainLabelTempText();
 }
 
 void KonversationStatusBar::clearMainLabelTempText()
--- trunk/extragear/network/konversation/src/server.cpp #577139:577140
@@ -3275,6 +3275,7 @@
     }
     else if (!isConnected())
     {
+        reconnectCounter = 0;
         connectToIRCServer();
     }
 }