1
0
Fork 0

For #2762 - Prevents crash when a device has a font scale other than 1.0

master
Jeff Boek 2019-05-22 18:03:34 -07:00
parent 3f821fec75
commit f5a993a027
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class Core(private val context: Context) {
trackingProtectionPolicy = createTrackingProtectionPolicy(),
historyTrackingDelegate = HistoryDelegate(historyStorage),
preferredColorScheme = getPreferredColorScheme(),
automaticFontSizeAdjustment = Settings.getInstance(context).fontSizeFactor == 1f
automaticFontSizeAdjustment = false
)
GeckoEngine(context, defaultSettings, runtime)