Removed Setting for Desktop mode. It's not compatible now.

If folks really want to they can still use it via a browser.
This commit is contained in:
Jon Benson
2013-05-07 15:45:41 +10:00
parent 822b7df00a
commit 4f2cb4f6bb
3 changed files with 2 additions and 14 deletions

View File

@ -330,14 +330,9 @@ public class IITC_Mobile extends Activity {
}
}
// vp=f enables desktop mode...vp=m is the defaul mobile view
// Force mobile view.
// New actions are not compatible with desktop mode
private String addUrlParam(String url) {
SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this);
this.desktop = sharedPref.getBoolean("pref_force_desktop", false);
if (desktop)
return (url + "?vp=f");
else
return (url + "?vp=m");
}