Bug 1281192 - Make the Fennec stationary displayport height multiplier match the corresponding skate multiplier to avoid constant resizing. r?rbarker draft
authorKartikaya Gupta <kgupta@mozilla.com>
Tue, 21 Jun 2016 14:46:37 -0400
changeset 380356 cba1848dfcf90d62e27142b9417602c3a2eeb58c
parent 380355 09f9c29540e815d4d90e898f445bc6b0f9a9f63a
child 523709 02c52864723d44b84aac3a746337736cf4eb3aad
push id21203
push userkgupta@mozilla.com
push dateTue, 21 Jun 2016 18:46:59 +0000
reviewersrbarker
bugs1281192
milestone50.0a1
Bug 1281192 - Make the Fennec stationary displayport height multiplier match the corresponding skate multiplier to avoid constant resizing. r?rbarker MozReview-Commit-ID: FaYsMUIhDh
modules/libpref/init/all.js
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -652,17 +652,17 @@ pref("apz.y_stationary_size_multiplier",
 pref("apz.zoom_animation_duration_ms", 250);
 pref("apz.scale_repaint_delay_ms", 500);
 
 #if defined(MOZ_WIDGET_GONK) || defined(MOZ_WIDGET_ANDROID)
 // Mobile prefs
 pref("apz.allow_zooming", true);
 pref("apz.enlarge_displayport_when_clipped", true);
 pref("apz.y_skate_size_multiplier", "1.5");
-pref("apz.y_stationary_size_multiplier", "1.8");
+pref("apz.y_stationary_size_multiplier", "1.5");
 #endif
 
 #ifdef XP_MACOSX
 // Whether to run in native HiDPI mode on machines with "Retina"/HiDPI display;
 //   <= 0 : hidpi mode disabled, display will just use pixel-based upscaling
 //   == 1 : hidpi supported if all screens share the same backingScaleFactor
 //   >= 2 : hidpi supported even with mixed backingScaleFactors (somewhat broken)
 pref("gfx.hidpi.enabled", 2);