| Summary: | status bar explanation is not cleaned when hovering over a menu item without explanation | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Albert Astals Cid <aacid> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Albert Astals Cid
2006-08-25 18:34:28 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();
}
}
|