Show JIT blocks widget when selecting 'PPC vs Host' in code widget

Before, I just assumed this feature was broken since I didn't know what widget it used. Now, it behaves like show memory and show code elsewhere.
This commit is contained in:
Pokechu22 2022-12-01 16:47:32 -08:00
parent 0ccfa31ec8
commit 5842b90bee

View File

@ -123,6 +123,11 @@ void JITWidget::ConnectWidgets()
void JITWidget::Compare(u32 address)
{
m_address = address;
Settings::Instance().SetJITVisible(true);
raise();
m_host_asm_widget->setFocus();
Update();
}