Merge pull request #1961 from deltachat/adb-fix-log-scrolling

make log view's scroll to top/bottom work
This commit is contained in:
Asiel Díaz Benítez
2021-06-23 18:33:06 -04:00
committed by GitHub
@@ -98,9 +98,15 @@ public class LogViewFragment extends Fragment {
logPreview.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
}
public void scrollDownLog() { logPreview.setSelection(logPreview.getText().length()); }
public void scrollDownLog() {
logPreview.requestFocus();
logPreview.setSelection(logPreview.getText().length());
}
public void scrollUpLog() { logPreview.setSelection(0); }
public void scrollUpLog() {
logPreview.requestFocus();
logPreview.setSelection(0);
}
public boolean saveLogFile() {