diff --git a/res/menu/local_help.xml b/res/menu/local_help.xml index 5a6f451e5..0b1800bb8 100644 --- a/res/menu/local_help.xml +++ b/res/menu/local_help.xml @@ -2,6 +2,9 @@ + + diff --git a/src/org/thoughtcrime/securesms/LocalHelpActivity.java b/src/org/thoughtcrime/securesms/LocalHelpActivity.java index 3f5c7eaba..7e41c5dbc 100644 --- a/src/org/thoughtcrime/securesms/LocalHelpActivity.java +++ b/src/org/thoughtcrime/securesms/LocalHelpActivity.java @@ -95,6 +95,9 @@ public class LocalHelpActivity extends PassphraseRequiredActionBarActivity case android.R.id.home: finish(); return true; + case R.id.log_scroll_up: + webView.scrollTo(0, 0); + return true; case R.id.learn_more: openOnlineUrl("https://delta.chat"); return true;