mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
Merge pull request #1961 from deltachat/adb-fix-log-scrolling
make log view's scroll to top/bottom work
This commit is contained in:
@@ -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() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user