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:
commit
a6c52d31ca
|
@ -194,7 +194,8 @@ void MultiplayerState::UpdateThemedIcons() {
|
|||
} else {
|
||||
status_icon->setPixmap(QIcon::fromTheme("disconnected").pixmap(16));
|
||||
}
|
||||
client_room->UpdateIconDisplay();
|
||||
if (client_room)
|
||||
client_room->UpdateIconDisplay();
|
||||
}
|
||||
|
||||
static void BringWidgetToFront(QWidget* widget) {
|
||||
|
|
Reference in New Issue