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

Commit 19a7b283 authored by Jason Monk's avatar Jason Monk
Browse files

Fix crash in add QS tiles

It seems one of the tiles has an empty icon... Fix the crash for
now, will deal with the tile later.

Bug: 26897121
Change-Id: I9abd073a891a5222711fe81ed05ade2a87d70121
parent b61437de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ public class TileAdapter extends BaseAdapter {
        }

        private void addTile(String spec, Icon icon, CharSequence label, Context context) {
            addTile(spec, icon.getDrawable(context), label);
            addTile(spec, icon != null ? icon.getDrawable(context) : null, label);
        }

        private View getView(Context context, View convertView, ViewGroup parent,