mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #7475 from aldelaro5/symbols-search-case-insensitive
Qt/debugger: make the symbols search case insensitive
This commit is contained in:
commit
7cfba7397c
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ void CodeWidget::UpdateSymbols()
|
|||
|
||||
item->setData(Qt::UserRole, symbol.second.address);
|
||||
|
||||
if (name.indexOf(m_symbol_filter) != -1)
|
||||
if (name.toUpper().indexOf(m_symbol_filter.toUpper()) != -1)
|
||||
m_symbols_list->addItem(item);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue