Qt/debugger: make the symbols search case insensitive

This commit is contained in:
aldelaro5 2018-10-08 21:17:05 -04:00
parent 31594a8138
commit 68aff9c023
No known key found for this signature in database
GPG Key ID: 054DD3E6FF48DB71

View File

@ -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);
}