mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
MessageView shouldn't swallow keybindings
This commit is contained in:
parent
651642faeb
commit
7dcd346e0f
@ -1205,6 +1205,11 @@ public class MessageView extends Activity
|
||||
|
||||
class MessageWebViewClient extends WebViewClient
|
||||
{
|
||||
|
||||
public boolean shouldOverrideKeyEvent (WebView view, KeyEvent event) {
|
||||
return true;
|
||||
}
|
||||
|
||||
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
|
||||
{
|
||||
Log.e(Email.LOG_TAG, "WebView: url '"+failingUrl+"' error "+description);
|
||||
|
Loading…
Reference in New Issue
Block a user