mirror of https://github.com/M66B/FairEmail.git
Fixed compose scroll issues
This commit is contained in:
parent
93bdc345f4
commit
32fa8186d0
|
@ -5276,7 +5276,7 @@ public class FragmentCompose extends FragmentBase {
|
||||||
showDraft(draft);
|
showDraft(draft);
|
||||||
|
|
||||||
} else if (action == R.id.action_save) {
|
} else if (action == R.id.action_save) {
|
||||||
setFocus(args.getInt("focus"), args.getBoolean("ime"));
|
setFocus(args.getInt("focus"), args.getBoolean("ime") && false);
|
||||||
|
|
||||||
} else if (action == R.id.action_check) {
|
} else if (action == R.id.action_check) {
|
||||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||||
|
@ -5626,6 +5626,7 @@ public class FragmentCompose extends FragmentBase {
|
||||||
return;
|
return;
|
||||||
|
|
||||||
imm.showSoftInput(target, InputMethodManager.SHOW_IMPLICIT);
|
imm.showSoftInput(target, InputMethodManager.SHOW_IMPLICIT);
|
||||||
|
|
||||||
} catch (Throwable ex) {
|
} catch (Throwable ex) {
|
||||||
Log.e(ex);
|
Log.e(ex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue