diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/kvirc/ui/kvi_userlistview.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/kvirc/ui/kvi_userlistview.cpp b/src/kvirc/ui/kvi_userlistview.cpp index f6a11b73d..24f8742f6 100644 --- a/src/kvirc/ui/kvi_userlistview.cpp +++ b/src/kvirc/ui/kvi_userlistview.cpp @@ -505,7 +505,13 @@ bool KviUserListView::completeNickStandard(const QString &begin,const QString &s buffer += entry->m_pGlobalData->host(); } return true; - } else if(result < 0) + } + /* + * This part of code has been commented out to fix #236 + * This code takes some absurt assterion about the first character of nicknames + * and their order in the userlist. + + else if(result < 0) { // No match...begin is lower than the current entry if(entry->m_iFlags == 0)return false; @@ -520,6 +526,7 @@ bool KviUserListView::completeNickStandard(const QString &begin,const QString &s continue; } } + */ } entry = entry->m_pNext; } |
