Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 278856c4 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "SystemUI: Show the icon of "Mobile data" and "Notification" in status bar"

parents 7161e8e6 d30579f3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -92,11 +92,11 @@ public class DataTile extends QSTile<QSTile.BooleanState> {
        state.visible = true;
        state.label = mContext.getString(R.string.quick_settings_mobile_data_label);
        if (dataOn) {
            state.iconId = R.drawable.ic_qs_data_on;
            state.icon = ResourceIcon.get(R.drawable.ic_qs_data_on);
            state.contentDescription = mContext.getString(
                    R.string.accessibility_quick_settings_data_on);
        } else {
            state.iconId = R.drawable.ic_qs_data_off;
            state.icon = ResourceIcon.get(R.drawable.ic_qs_data_off);
            state.contentDescription = mContext.getString(
                    R.string.accessibility_quick_settings_data_off);
        }
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ public class NotificationsTile extends QSTile<NotificationsTile.NotificationsSta
        state.visible = true;
        state.zen = mZenController.getZen();
        state.ringerMode = mAudioManager.getRingerMode();
        state.iconId = getNotificationIconId(state.zen, state.ringerMode);
        state.icon = ResourceIcon.get(getNotificationIconId(state.zen, state.ringerMode));
        state.label = mContext.getString(R.string.quick_settings_notifications_label);
    }