| Index: mobile/android/base/home/PanelAuthLayout.java |
| =================================================================== |
| --- a/mobile/android/base/home/PanelAuthLayout.java |
| +++ b/mobile/android/base/home/PanelAuthLayout.java |
| @@ -48,17 +48,18 @@ class PanelAuthLayout extends LinearLayo |
| GeckoAppShell.sendEventToGecko(GeckoEvent.createBroadcastEvent("HomePanels:Authenticate", panelId)); |
| } |
| }); |
| final ImageView imageView = (ImageView) findViewById(R.id.image); |
| final String imageUrl = authConfig.getImageUrl(); |
| if (TextUtils.isEmpty(imageUrl)) { |
| + // Changed icon. See https://issues.adblockplus.org/ticket/2606 |
|
Felix Dahlke
2016/11/17 18:38:51
Nit: Makes more sense to me if you'd move this one
|
| // Use a default image if an image URL isn't specified. |
| - imageView.setImageResource(R.drawable.icon_home_empty_firefox); |
| + imageView.setImageResource(R.drawable.abb_icon_home_empty); |
| } else { |
| ImageLoader.with(getContext()) |
| .load(imageUrl) |
| .into(imageView); |
| } |
| } |
| } |