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

Commit 9b0c6a52 authored by nharold's avatar nharold Committed by android-build-merger
Browse files

Merge "Always include BAND_MODE=AUTOMATIC in the Radio Band Mode List"

am: c98ca3da

Change-Id: Ic7b16572aab3a3d10ee06d1810ce0aa05a9e5b1d
parents 2b03ffb2 c98ca3da
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -164,7 +164,12 @@ public class BandMode extends Activity {
            int size = bands[0];

            if (size > 0) {
                mBandListAdapter.add(
                        new BandListItem(Phone.BM_UNSPECIFIED)); //Always include AUTOMATIC
                for (int i=1; i<=size; i++) {
                    if (bands[i] == Phone.BM_UNSPECIFIED) {
                        continue;
                    }
                    item = new BandListItem(bands[i]);
                    mBandListAdapter.add(item);
                    if (DBG) log("Add " + item.toString());