mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1231915 - Ignore the APZ pref if MOZ_ANDROID_APZ is enabled, since the pref doesn't cover all the relevant code. r=rbarker
This commit is contained in:
parent
e6c97dc7db
commit
e8fcd59b57
@ -2174,7 +2174,11 @@ gfxPlatform::AsyncPanZoomEnabled()
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
#ifdef MOZ_ANDROID_APZ
|
||||
return true;
|
||||
#else
|
||||
return gfxPrefs::AsyncPanZoomEnabledDoNotUseDirectly();
|
||||
#endif
|
||||
}
|
||||
|
||||
/*virtual*/ bool
|
||||
|
Loading…
Reference in New Issue
Block a user