Remove commented code

This commit is contained in:
Kieran Cawthray 2021-12-06 22:04:38 +01:00 committed by JF
parent f4daf63679
commit 645f6f43dc

View file

@ -237,14 +237,12 @@ void PineTimeStyle::Refresh() {
bleState = bleController.IsConnected(); bleState = bleController.IsConnected();
if (bleState.IsUpdated()) { if (bleState.IsUpdated()) {
lv_label_set_text(bleIcon, BleIcon::GetIcon(bleState.Get())); lv_label_set_text(bleIcon, BleIcon::GetIcon(bleState.Get()));
//lv_obj_realign(bleIcon);
AlignIcons(); AlignIcons();
} }
notificationState = notificatioManager.AreNewNotificationsAvailable(); notificationState = notificatioManager.AreNewNotificationsAvailable();
if (notificationState.IsUpdated()) { if (notificationState.IsUpdated()) {
lv_label_set_text(notificationIcon, NotificationIcon::GetIcon(notificationState.Get())); lv_label_set_text(notificationIcon, NotificationIcon::GetIcon(notificationState.Get()));
//lv_obj_realign(notificationIcon);
AlignIcons(); AlignIcons();
} }