Bug 936027 - Store int prefs as ints in the prefs file or they don't get picked up. r=jimm

This commit is contained in:
Kartikaya Gupta 2013-11-08 09:10:29 -05:00
parent 28d5835b19
commit c9876a932f

View File

@ -43,8 +43,8 @@ pref("layers.componentalpha.enabled", false);
// Prefs to control the async pan/zoom behaviour
pref("apz.touch_start_tolerance", "0.1"); // dpi * tolerance = pixel threshold
pref("apz.pan_repaint_interval", "50"); // prefer 20 fps
pref("apz.fling_repaint_interval", "50"); // prefer 20 fps
pref("apz.pan_repaint_interval", 50); // prefer 20 fps
pref("apz.fling_repaint_interval", 50); // prefer 20 fps
pref("apz.fling_friction", "0.002");
pref("apz.fling_stopped_threshold", "0.2");