| Summary: | Network/Nickname/Channel column jumps around when expanding trees in Watched Nicks Online | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Niek Beernink <n.beernink> |
| 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
Niek Beernink
2006-08-24 00:43:41 UTC
SVN commit 577440 by hein:
Fix columns in "Watched Nicknames Online" jumping around.
BUG:132892
M +1 -0 ChangeLog
M +1 -4 src/nicksonline.cpp
--- trunk/extragear/network/konversation/ChangeLog #577439:577440
@@ -187,6 +187,7 @@
- Away message improvements.
- Parameter-less /away sets away now, too.
- Made using custom fonts optional.
+- Fix Watchlist columns jumping around.
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/nicksonline.cpp #577439:577440
@@ -61,7 +61,7 @@
m_nickListView->addColumn(i18n("Network/Nickname/Channel"));
m_kabcIconSet = KGlobal::iconLoader()->loadIconSet("kaddressbook",KIcon::Small);
m_nickListView->addColumn(i18n("Additional Information"));
- m_nickListView->setFullWidth(false);
+ m_nickListView->setFullWidth(true);
m_nickListView->setRootIsDecorated(true);
m_nickListView->setShowToolTips(false);
m_nickListView->setShadeSortColumn(true);
@@ -535,9 +535,6 @@
{
updateServerOnlineList(server);
}
- // Adjust column widths.
- m_nickListView->adjustColumn(nlvcNetworkNickChannel);
- m_nickListView->adjustColumn(nlvcAdditionalInfo);
// Refresh addressbook buttons.
slotNickListView_SelectionChanged();
}
|