no bug. Disable saving last screenshot until http://code.google.com/p/android/issues/detail?id=16941 is worked around

This commit is contained in:
Doug Turner 2011-11-22 13:44:44 -08:00
parent 3a1c4e5614
commit f35c0f213e

View File

@ -1344,11 +1344,13 @@ abstract public class GeckoApp
Log.i(LOGTAG, "pause"); Log.i(LOGTAG, "pause");
// Remember the last screen. // Remember the last screen.
mMainHandler.postDelayed(new Runnable() { // until http://code.google.com/p/android/issues/detail?id=16941 is worked around
public void run() { // we don't need to save this.
rememberLastScreen(false); // mMainHandler.postDelayed(new Runnable() {
} // public void run() {
}, 500); // rememberLastScreen(false);
// }
// }, 500);
GeckoAppShell.sendEventToGecko(new GeckoEvent(GeckoEvent.ACTIVITY_PAUSING)); GeckoAppShell.sendEventToGecko(new GeckoEvent(GeckoEvent.ACTIVITY_PAUSING));
// The user is navigating away from this activity, but nothing // The user is navigating away from this activity, but nothing