Merge pull request #4576 from jroweboy/fixup-config

Frontend: Only reload icons in chat when the chat room is open
This commit is contained in:
James Rowe
2019-01-17 12:38:37 -07:00
committed by GitHub

View File

@@ -194,6 +194,7 @@ void MultiplayerState::UpdateThemedIcons() {
} else { } else {
status_icon->setPixmap(QIcon::fromTheme("disconnected").pixmap(16)); status_icon->setPixmap(QIcon::fromTheme("disconnected").pixmap(16));
} }
if (client_room)
client_room->UpdateIconDisplay(); client_room->UpdateIconDisplay();
} }