summaryrefslogtreecommitdiff
path: root/light/Light.h
diff options
context:
space:
mode:
Diffstat (limited to 'light/Light.h')
-rw-r--r--light/Light.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/light/Light.h b/light/Light.h
index 8427148..7acefa7 100644
--- a/light/Light.h
+++ b/light/Light.h
@@ -48,14 +48,12 @@ class Light : public ILight {
uint32_t max_screen_brightness_;
std::unordered_map<Type, std::function<void(Type type, const LightState&)>> lights_{
- {Type::ATTENTION, [this](auto&&... args) { setLightNotification(args...); }},
{Type::BACKLIGHT, [this](auto&&... args) { setLightBacklight(args...); }},
{Type::BATTERY, [this](auto&&... args) { setLightNotification(args...); }},
{Type::NOTIFICATIONS, [this](auto&&... args) { setLightNotification(args...); }}};
// Keep sorted in the order of importance.
- std::array<std::pair<Type, LightState>, 3> notif_states_ = {{
- {Type::ATTENTION, {}},
+ std::array<std::pair<Type, LightState>, 2> notif_states_ = {{
{Type::NOTIFICATIONS, {}},
{Type::BATTERY, {}},
}};