Skip to content

Commit 961ae12

Browse files
committed
Fix LTE QS Tile breakage
Thanks to varund7726 for the hint
1 parent b6ddd5c commit 961ae12

File tree

1 file changed

+3
-2
lines changed
  • packages/SystemUI/src/com/android/systemui/qs/tiles

1 file changed

+3
-2
lines changed

packages/SystemUI/src/com/android/systemui/qs/tiles/LteTile.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,13 @@ protected void handleUpdateState(BooleanState state, Object arg) {
8888
case Phone.NT_MODE_LTE_TDSCDMA_WCDMA:
8989
state.visible = true;
9090
state.icon= ResourceIcon.get(R.drawable.ic_qs_lte_on);
91-
state.label = mContext.getString(R.string.lte_on);
91+
state.label = mContext.getString(R.string.lte_on);
9292
break;
9393
default:
9494
state.visible = true;
9595
state.icon = ResourceIcon.get(R.drawable.ic_qs_lte_off);
96-
state.label = mContext.getString(R.string.lte_off);
96+
state.label = mContext.getString(R.string.lte_off);
97+
9798
break;
9899
}
99100
}

0 commit comments

Comments
 (0)