Use fonticons instead of "X" on the serverlist (#432)

This commit is contained in:
Dss0 2022-08-15 11:56:00 +02:00 committed by GitHub
parent b55d609710
commit ddb14febf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ namespace Components
{
case Column::Password:
{
return (server->password ? "X" : "");
return (server->password ? ":icon_locked:" : "");
}
case Column::Matchtype:
@ -89,12 +89,12 @@ namespace Components
case Column::AimAssist:
{
return ((server->aimassist == 1) ? "X" : "");
return ((server->aimassist == 1) ? ":headshot:" : "");
}
case Column::VoiceChat:
{
return ((server->voice == 1) ? "X" : "");
return ((server->voice == 1) ? ":voice_on:" : "");
}
case Column::Hostname: