1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-10-31 15:45:08 -04:00

MessageView shouldn't swallow keybindings

This commit is contained in:
Jesse Vincent 2009-05-05 01:56:41 +00:00
parent 651642faeb
commit 7dcd346e0f

View File

@ -1205,6 +1205,11 @@ public class MessageView extends Activity
class MessageWebViewClient extends WebViewClient class MessageWebViewClient extends WebViewClient
{ {
public boolean shouldOverrideKeyEvent (WebView view, KeyEvent event) {
return true;
}
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
{ {
Log.e(Email.LOG_TAG, "WebView: url '"+failingUrl+"' error "+description); Log.e(Email.LOG_TAG, "WebView: url '"+failingUrl+"' error "+description);