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

Commit 2769b60a authored by Jason Monk's avatar Jason Monk Committed by Android Git Automerger
Browse files

am 2b24b95f: am 72faacb7: am 80370952: Merge "QS: Only show summary for active wifi" into mnc-dev

* commit '2b24b95f':
  QS: Only show summary for active wifi
parents bb7ed9b7 2b24b95f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -326,7 +326,7 @@ public class WifiTile extends QSTile<QSTile.SignalState> {
                    item.tag = ap;
                    item.icon = mWifiController.getIcon(ap);
                    item.line1 = ap.getSsid();
                    item.line2 = ap.getSummary();
                    item.line2 = ap.isActive() ? ap.getSummary() : null;
                    item.overlay = ap.getSecurity() != AccessPoint.SECURITY_NONE
                            ? mContext.getDrawable(R.drawable.qs_ic_wifi_lock)
                            : null;