diff --git a/packages/SystemUI/src/com/android/systemui/qs/QSSecurityFooter.java b/packages/SystemUI/src/com/android/systemui/qs/QSSecurityFooter.java index a48bcbd1f840f..6418c8075b1e9 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QSSecurityFooter.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QSSecurityFooter.java @@ -153,9 +153,14 @@ public class QSSecurityFooter implements OnClickListener, DialogInterface.OnClic hasCACerts, hasCACertsInWorkProfile, isNetworkLoggingEnabled, vpnName, vpnNameWorkProfile, organizationName, workProfileName); // Update the icon - int footerIconId = vpnName != null || vpnNameWorkProfile != null - ? R.drawable.ic_qs_vpn - : R.drawable.ic_info_outline; + int footerIconId = R.drawable.ic_info_outline; + if (vpnName != null || vpnNameWorkProfile != null) { + if (mSecurityController.isVpnBranded()) { + footerIconId = R.drawable.ic_qs_branded_vpn; + } else { + footerIconId = R.drawable.ic_qs_vpn; + } + } if (mFooterIconId != footerIconId) { mFooterIconId = footerIconId; mMainHandler.post(mUpdateIcon);