Bug 133032

Summary: with 'show box to change own nickname' toggled on, shft+tabkey cannot navigate to userlist
Product: [Applications] konversation Reporter: tech9iner+BugsKDEorg
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 tech9iner+BugsKDEorg 2006-08-26 16:21:16 UTC
Version:           0.19+ #3129 (using KDE 3.5.4 Level "a" , unofficial build of SUSE )
Compiler:          Target: i586-suse-linux
OS:                Linux (i686) release 2.6.16.21-0.13-default

with 'show box to change own nickname' toggled on, shft+tabkey cannot navigate to userlist via keyboard. with it toggled off a pure keyboard pc operator can then shiftkey+tabkey navigate action/cursor focus 4x from input field 1, to userlist 2, some invisible non-hilighted point with no negligible keyboard response 3, to the 4th action focus on the channel tabs, then repeats or loops the possible 4 different focus points.  needs ideally to work with it on or off.
Comment 1 argonel 2006-08-26 19:35:57 UTC
SVN commit 577429 by argonel:

allow moving focus through the nickname box
BUG:133032


 M  +2 -2      channel.cpp  


--- trunk/extragear/network/konversation/src/channel.cpp #577428:577429
@@ -2141,9 +2141,9 @@
     {
       nicknameCombobox->setCurrentText(oldNick);
       changeNickname(newNick);
+      // return focus to input line
+      channelInput->setFocus();
     }
-    // return focus to input line
-    channelInput->setFocus();
 }
 
 void Channel::changeNickname(const QString& newNickname)