mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 02:52:30 +02:00
Qt/debugger: make the symbols search case insensitive
This commit is contained in:
parent
31594a8138
commit
68aff9c023
@ -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…
Reference in New Issue
Block a user