mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
DolphinQt: Prevent MemoryViewWidget updates when hidden
This commit is contained in:
@ -437,6 +437,9 @@ void MemoryViewWidget::Update()
|
|||||||
|
|
||||||
void MemoryViewWidget::UpdateColumns()
|
void MemoryViewWidget::UpdateColumns()
|
||||||
{
|
{
|
||||||
|
if (!isVisible())
|
||||||
|
return;
|
||||||
|
|
||||||
// Check if table is created
|
// Check if table is created
|
||||||
if (m_table->item(1, 1) == nullptr)
|
if (m_table->item(1, 1) == nullptr)
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user