mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01: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
@ -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…
x
Reference in New Issue
Block a user