Skip to content
Permalink
Browse files
Merge pull request #10111 from JosJuice/networkwidget-hidden
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.
@@ -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++)
{

0 comments on commit ca064b5

Please sign in to comment.