summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2010-06-16 15:06:16 -0400
committerJoe Onorato <joeo@android.com>2010-06-16 15:06:16 -0400
commita8a8a42f8570bdbe66a09fc278564e7a549158da (patch)
treea297b3d5ae6b35b8665164c35f5f9c4c4d36e778 /services
parent92266a7894becc1cdf2298fd02380749ab036131 (diff)
downloadframeworks_base-a8a8a42f8570bdbe66a09fc278564e7a549158da.zip
frameworks_base-a8a8a42f8570bdbe66a09fc278564e7a549158da.tar.gz
frameworks_base-a8a8a42f8570bdbe66a09fc278564e7a549158da.tar.bz2
Fix bug 2772728 with the suggested fix. I wasn't able to reproduce it though.
Change-Id: Ic3e3a7c679a74b822a3567faeb353950af3cfbca
Diffstat (limited to 'services')
-rw-r--r--services/java/com/android/server/AppWidgetService.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/services/java/com/android/server/AppWidgetService.java b/services/java/com/android/server/AppWidgetService.java
index dc5fd30..3ed6c12 100644
--- a/services/java/com/android/server/AppWidgetService.java
+++ b/services/java/com/android/server/AppWidgetService.java
@@ -1204,6 +1204,7 @@ class AppWidgetService extends IAppWidgetService.Stub
// If it's currently showing, call back with the new AppWidgetProviderInfo.
for (int j=0; j<M; j++) {
AppWidgetId id = p.instances.get(j);
+ id.views = null;
if (id.host != null && id.host.callbacks != null) {
try {
id.host.callbacks.providerChanged(id.appWidgetId, p.info);