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

Commit c4675c02 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix labels loading regression" into tm-qpr-dev am: ea523a0c am: 2df43628

parents fe911f2a 2df43628
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -647,15 +647,16 @@ public class ResolverListAdapter extends BaseAdapter {

        if (info instanceof DisplayResolveInfo) {
            DisplayResolveInfo dri = (DisplayResolveInfo) info;
            boolean hasLabel = dri.hasDisplayLabel();
            if (dri.hasDisplayLabel()) {
                holder.bindLabel(
                        dri.getDisplayLabel(),
                        dri.getExtendedInfo(),
                    hasLabel && alwaysShowSubLabel());
            holder.bindIcon(info);
            if (!hasLabel) {
                        alwaysShowSubLabel());
            } else {
                holder.bindLabel("", "", false);
                loadLabel(dri);
            }
            holder.bindIcon(info);
            if (!dri.hasDisplayIcon()) {
                loadIcon(dri);
            }