Bug 132892 - Network/Nickname/Channel column jumps around when expanding trees in Watched Nicks Online
Summary: Network/Nickname/Channel column jumps around when expanding trees in Watched ...
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-24 00:43 UTC by Niek Beernink
Modified: 2006-08-26 20:09 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Niek Beernink 2006-08-24 00:43:41 UTC
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.
Comment 1 Eike Hein 2006-08-26 20:09:52 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();
 }