| Index: src/org/adblockplus/android/AdvancedPreferences.java |
| diff --git a/src/org/adblockplus/android/AdvancedPreferences.java b/src/org/adblockplus/android/AdvancedPreferences.java |
| index bf763be58e6d85af05150e005070b50c949820ae..cfe3e106f416f56f631432920dc7ff5fac41d6ea 100644 |
| --- a/src/org/adblockplus/android/AdvancedPreferences.java |
| +++ b/src/org/adblockplus/android/AdvancedPreferences.java |
| @@ -65,7 +65,7 @@ public class AdvancedPreferences extends SummarizedPreferences |
| this.serviceBinder = new ServiceBinder(this); |
| final PreferenceScreen screen = getPreferenceScreen(); |
| - if (Utils.isNativeProxySupported(this)) |
| + if (ProxyService.GLOBAL_PROXY_USER_CONFIGURABLE) |
| { |
| screen.removePreference(findPreference(getString(R.string.pref_proxy))); |
| if (prefs.getBoolean(getString(R.string.pref_proxyautoconfigured), false)) |
| @@ -200,7 +200,7 @@ public class AdvancedPreferences extends SummarizedPreferences |
| { |
| items.add("Has native proxy auto configured"); |
| } |
| - if (Utils.isNativeProxySupported(this)) |
| + if (ProxyService.GLOBAL_PROXY_USER_CONFIGURABLE) |
| { |
| final ProxyProperties pp = ProxyProperties.fromContext(getApplicationContext()); |
| if (pp != null) |