commit b1531a61cc33e9234a5d1d228a07a07d4e9e4c1b Author: Georg Koppen g.koppen@jondos.de Date: Mon Sep 30 10:21:18 2013 +0200
fixup! Tor Browser's Firefox preference overrides.
setting 'layers.acceleration.disabled' to 'true' to fix blank Tor Network Settings on Windows --- browser/app/profile/000-tor-browser.js | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index 0d2dae2..c8ff052 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -121,7 +121,10 @@ pref("xpinstall.whitelist.add.36", ""); pref("keyword.URL", "https://startpage.com/do/search?q=");
// Hacks/workarounds: Direct2D seems to crash w/ lots of video cards w/ MinGW? +// If only the first one is set to true then the Tor Network Settings are blank +// on some Windows machines. pref("gfx.direct2d.disabled", true); +pref("layers.acceleration.disabled", true);
// Version placeholder pref("torbrowser.version", "UNKNOWN");
tor-commits@lists.torproject.org