Bug 132980

Summary: status bar explanation is not cleaned when hovering over a menu item without explanation
Product: [Applications] konversation Reporter: Albert Astals Cid <aacid>
Component: generalAssignee: Konversation Developers <konversation-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

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();
     }
 }