From 3910ab6cabb27348e26bd67424c08b8a2303052f Mon Sep 17 00:00:00 2001 From: brubaked <37672083+brubaked@users.noreply.github.com> Date: Tue, 17 Mar 2020 10:17:18 -0700 Subject: [PATCH] Changed Sensor icons to be more emotionally sensitive (#32904) The existing sensor icons, while descriptive - dead = dead - are perhaps too matter of fact and don't accurately convey the tragedy. I changed emoticon-dead-outline to emoticon-cry-outline, as I think it better conveys the reality of the situation along with the emotions tied to the statistic. --- homeassistant/components/coronavirus/sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/coronavirus/sensor.py b/homeassistant/components/coronavirus/sensor.py index 3885dbebf24..2887427ec6b 100644 --- a/homeassistant/components/coronavirus/sensor.py +++ b/homeassistant/components/coronavirus/sensor.py @@ -7,9 +7,9 @@ from .const import ATTRIBUTION, OPTION_WORLDWIDE SENSORS = { "confirmed": "mdi:emoticon-neutral-outline", - "current": "mdi:emoticon-frown-outline", + "current": "mdi:emoticon-sad-outline", "recovered": "mdi:emoticon-happy-outline", - "deaths": "mdi:emoticon-dead-outline", + "deaths": "mdi:emoticon-cry-outline", }