diff options
| author | 2009-07-27 22:15:35 -0700 | |
|---|---|---|
| committer | 2009-07-27 22:15:35 -0700 | |
| commit | d0021dcae7f474c062f23a449bdd18be5e882d7e (patch) | |
| tree | 4a4988ff14a50e5f0f7806a9273aedb7527213aa | |
| parent | 20583ff9d49257bd4ccc60e7b6337661e34ed887 (diff) | |
| parent | 0d907fa00bd9b20e69f2a95a71fbaf9fffeb8c94 (diff) | |
Merge change 8740 into donut
* changes:
Fix issue #1991230: DisplayMetrics.displayHeight is not updated with orientation change
| -rw-r--r-- | core/java/android/app/ActivityThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index e21b1d9689b8..32a289122cf2 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -3634,7 +3634,7 @@ public final class ActivityThread { Locale.setDefault(config.locale); } - Resources.updateSystemConfiguration(config, null); + Resources.updateSystemConfiguration(config, dm); ApplicationContext.ApplicationPackageManager.configurationChanged(); //Log.i(TAG, "Configuration changed in " + currentPackageName()); |