summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-02-03 14:52:30 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-02-03 14:52:30 +0300
commitf06df79eedfdef7ee180ca5d3c8becfa605da516 (patch)
tree794c8f57e407daf437d6ae671eecd22a856a178c /protocols
parent9dddfef7c8a3b41cfc3584462af7d5c67f024756 (diff)
fixes #4162 (IRC: serch in list of channels does not work for topics)
Diffstat (limited to 'protocols')
-rw-r--r--protocols/IRCG/src/channelList.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/IRCG/src/channelList.cpp b/protocols/IRCG/src/channelList.cpp
index 1743d15936..efd7c380d2 100644
--- a/protocols/IRCG/src/channelList.cpp
+++ b/protocols/IRCG/src/channelList.cpp
@@ -169,6 +169,8 @@ public:
// Match the text?
wchar_t *t = wcsstr(lvm.pszText, strFilterText);
if (t == nullptr) { // If no, then Check if in the topics
+ lvm.iSubItem = 3; // 4th column
+ lvm.iItem = i;
m_list.GetItem(&lvm);
// Match the text?