mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Qt/debugger: make the symbols search case insensitive
This commit is contained in:
parent
31594a8138
commit
68aff9c023
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