Eliminate failing Toast. Perhaps it can be restored, if the Toast is

generated in the message handling thread.
This commit is contained in:
Daniel Applebaum 2009-09-24 02:09:57 +00:00
parent b4b1b081a7
commit f3312eb064
1 changed files with 2 additions and 1 deletions

View File

@ -1174,7 +1174,8 @@ public class MessageList extends K9ListActivity {
return;
}
Toast.makeText(MessageList.this, message, Toast.LENGTH_LONG).show();
// Perhaps this can be restored, if done in the mHandler thread
// Toast.makeText(MessageList.this, message, Toast.LENGTH_LONG).show();
mHandler.progress(false);
mHandler.folderLoading(folder, false);
mHandler.folderSyncing(null);