commit 0b188f1fd0349fc76f8cc5663279a67b283d3b68 Author: Matthew Finkel Matthew.Finkel@gmail.com Date: Fri Nov 16 04:03:09 2018 +0000
Bug 27256 - Enable TouchEvents on Android
This allows highlighting/selecting text by long pressing.
Thanks to towiw for the info. --- mobile/android/app/000-tor-browser-android.js | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/mobile/android/app/000-tor-browser-android.js b/mobile/android/app/000-tor-browser-android.js index 04a613092e6d..c329fcdee5f7 100644 --- a/mobile/android/app/000-tor-browser-android.js +++ b/mobile/android/app/000-tor-browser-android.js @@ -61,3 +61,6 @@ pref("network.proxy.socks_port", 9050); pref("xpinstall.enabled", false); pref("extensions.enabledScopes", 1); pref("extensions.autoDisableScopes", 1); + +// Enable touch events on Android (highlighting text, etc) +pref("dom.w3c_touch_events.enabled", 2);
tbb-commits@lists.torproject.org