Skip to content

Commit

Permalink
Merge pull request #10111 from JosJuice/networkwidget-hidden
Browse files Browse the repository at this point in the history
DolphinQt: Don't update NetworkWidget when hidden
  • Loading branch information
JMC47 committed Sep 18, 2021
2 parents b0144d8 + 0a973dd commit ca064b5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/Core/DolphinQt/Debugger/NetworkWidget.cpp
Expand Up @@ -232,6 +232,9 @@ void NetworkWidget::ConnectWidgets()

void NetworkWidget::Update()
{
if (!isVisible())
return;

m_socket_table->setRowCount(0);
for (u32 wii_fd = 0; wii_fd < IOS::HLE::WII_SOCKET_FD_MAX; wii_fd++)
{
Expand Down

0 comments on commit ca064b5

Please sign in to comment.