diff options
| author | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2024-05-27 10:22:39 -0500 |
|---|---|---|
| committer | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2024-05-27 10:22:39 -0500 |
| commit | 916317b94954bda26ab1cfd622e71a5a0a93dc17 (patch) | |
| tree | e0c09268a1ab7944b06faeebc602da410e3e5ee7 | |
| parent | da3b872beb7959eae4c1574e0b1b0a8ae34cb062 (diff) | |
| parent | 5e93375099c9937576608d9ef767d9c719ef2a20 (diff) | |
Merge branch 'null-pixmap-reg' of https://github.com/AttorneyOnline/AO2-Client into null-pixmap-reg
| -rw-r--r-- | src/charselect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charselect.cpp b/src/charselect.cpp index bc4032fb..8bce410a 100644 --- a/src/charselect.cpp +++ b/src/charselect.cpp @@ -365,7 +365,7 @@ void Courtroom::filter_character_list() continue; } - if (!char_list.at(i).name.contains(ui_char_search->text(), Qt::CaseInsensitive)) + if (!char_list.at(i).name.contains(ui_char_search->text(), Qt::CaseInsensitive) && !ao_app->get_category(char_list.at(i).name).contains(ui_char_search->text(), Qt::CaseInsensitive)) { current_char_list_item->setHidden(true); continue; |
