Merge pull request #11738 from malleoz/malleo/tas_input_latency

DolphinQt: Prevent MemoryViewWidget updates when hidden
This commit is contained in:
Admiral H. Curtiss 2023-04-08 13:46:56 +02:00 committed by GitHub
commit d5b811dd7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

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