mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-01 17:26:12 +00:00
Workaround odd focus issue
This commit is contained in:
parent
fe5efc30ef
commit
cd83c1b66e
1 changed files with 9 additions and 0 deletions
|
@ -413,6 +413,15 @@ public class FragmentPop extends FragmentBase {
|
||||||
return view;
|
return view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
||||||
|
super.onViewCreated(view, savedInstanceState);
|
||||||
|
|
||||||
|
// Workaround odd focus issue
|
||||||
|
if (scroll != null)
|
||||||
|
scroll.requestChildFocus(null, null);
|
||||||
|
}
|
||||||
|
|
||||||
private void onSave(boolean should) {
|
private void onSave(boolean should) {
|
||||||
Bundle args = new Bundle();
|
Bundle args = new Bundle();
|
||||||
args.putLong("id", id);
|
args.putLong("id", id);
|
||||||
|
|
Loading…
Reference in a new issue