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:
parent
651642faeb
commit
7dcd346e0f
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user