| Summary: | with 'show box to change own nickname' toggled on, shft+tabkey cannot navigate to userlist | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | tech9iner+BugsKDEorg |
| 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
tech9iner+BugsKDEorg
2006-08-26 16:21:16 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)
|