Skip to content
Permalink
Browse files
Merge pull request #11738 from malleoz/malleo/tas_input_latency
DolphinQt: Prevent MemoryViewWidget updates when hidden
  • Loading branch information
AdmiralCurtiss committed Apr 8, 2023
2 parents 7519941 + 44e3993 commit d5b811d
Showing 1 changed file with 3 additions and 0 deletions.
@@ -437,6 +437,9 @@ void MemoryViewWidget::Update()

void MemoryViewWidget::UpdateColumns()
{
if (!isVisible())
return;

// Check if table is created
if (m_table->item(1, 1) == nullptr)
return;

0 comments on commit d5b811d

Please sign in to comment.