am 272b504e: Merge "Tame the monkey. Bug #2547546" into froyo

Merge commit '272b504ee6aaf2515572520cd642f9a4fbf81a44' into froyo-plus-aosp

* commit '272b504ee6aaf2515572520cd642f9a4fbf81a44':
  Tame the monkey.
This commit is contained in:
Romain Guy
2010-03-29 13:06:20 -07:00
committed by Android Git Automerger

View File

@@ -236,10 +236,14 @@ public class Dialog implements DialogInterface, Window.Callback,
WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION; WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION;
l = nl; l = nl;
} }
mWindowManager.addView(mDecor, l);
mShowing = true;
sendShowMessage(); try {
mWindowManager.addView(mDecor, l);
mShowing = true;
sendShowMessage();
} finally {
}
} }
/** /**