set fetch dev-mode default value to false

This commit is contained in:
Philipp Schaefer 2013-05-07 20:28:17 +02:00
parent 0eaf076a75
commit f3fae16fe6

View File

@ -142,7 +142,7 @@ public class IITC_WebViewClient extends WebViewClient {
SharedPreferences sharedPref = PreferenceManager SharedPreferences sharedPref = PreferenceManager
.getDefaultSharedPreferences(context); .getDefaultSharedPreferences(context);
Set<String> plugin_list = sharedPref.getStringSet("pref_plugins", null); Set<String> plugin_list = sharedPref.getStringSet("pref_plugins", null);
boolean dev_enabled = sharedPref.getBoolean("pref_dev_checkbox", true); boolean dev_enabled = sharedPref.getBoolean("pref_dev_checkbox", false);
// iterate through all enabled plugins and load them // iterate through all enabled plugins and load them
if (plugin_list != null) { if (plugin_list != null) {