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

Commit c98ca3da authored by nharold's avatar nharold Committed by Gerrit Code Review
Browse files

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

parents a5249906 f8555e48
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());