Bug 133032 - with 'show box to change own nickname' toggled on, shft+tabkey cannot navigate to userlist
Summary: with 'show box to change own nickname' toggled on, shft+tabkey cannot navigat...
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-26 16:21 UTC by tech9iner+BugsKDEorg
Modified: 2006-08-26 19:35 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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)