Disable info display by default until internet check works
This commit is contained in:
parent
734db8a743
commit
4058ecc737
|
@ -290,7 +290,7 @@ public class FileBrowser extends Fragment {
|
|||
final View childview = parentActivity.getLayoutInflater().inflate(
|
||||
R.layout.app_list_item, null, false);
|
||||
|
||||
final boolean webInfo = mPrefs.getBoolean(Config.pref_gamedetails, true);
|
||||
final boolean webInfo = mPrefs.getBoolean(Config.pref_gamedetails, false);
|
||||
|
||||
final XMLParser xmlParser = new XMLParser(game, index, webInfo);
|
||||
xmlParser.setViewParent(parentActivity, childview);
|
||||
|
|
|
@ -113,7 +113,7 @@ public class OptionsFragment extends Fragment {
|
|||
};
|
||||
Switch details_opt = (Switch) getView().findViewById(
|
||||
R.id.details_option);
|
||||
details_opt.setChecked(mPrefs.getBoolean(Config.pref_gamedetails, true));
|
||||
details_opt.setChecked(mPrefs.getBoolean(Config.pref_gamedetails, false));
|
||||
details_opt.setOnCheckedChangeListener(details_options);
|
||||
|
||||
gameBrowse = (Button) getView().findViewById(R.id.browse_game_path);
|
||||
|
|
Loading…
Reference in New Issue