mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
DolphinQt: Don't update NetworkWidget when hidden
Like 92a655c
but for NetworkWidget (which was added later).
This commit is contained in:
parent
d14d7595f2
commit
0a973ddcbb
@ -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++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user