Version: 0.19+ #3131 (using KDE 3.5.4, Kubuntu Package 4:3.5.4-0ubuntu6 ) Compiler: Target: i486-linux-gnu OS: Linux (i686) release 2.6.15-25-k7 How to reproduce: 1. Add some nicks currently online to the list of watched nicks. 2. Press F4 to open Watched Nicks Online. 3. Collapse all trees. 4. Now open a tree and notice how the size of the column grows and then after a few seconds shrinks again. 5. Now click a nick and see how it grows and shrinks again. Expected behavior: The columns should not grow and shrink like they currently do. If the column is too narrow, then the user should adjust it himself. Some more info: I three servers and one watched nick in each server.
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(); }