Fix Text cleared when adding a media

This commit is contained in:
Thomas 2023-01-27 12:10:21 +01:00
parent 554335aa6e
commit b52ab37aed
2 changed files with 3 additions and 2 deletions

View File

@ -334,7 +334,7 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
holder.binding.content.setSelection(statusDraft.cursorPosition); //Put cursor at the end
buttonVisibility(holder);
});
} else if (mentionedAccount != null) {
} else if (mentionedAccount != null && statusDraft.text == null) {
final SharedPreferences sharedpreferences = PreferenceManager.getDefaultSharedPreferences(context);
boolean capitalize = sharedpreferences.getBoolean(context.getString(R.string.SET_CAPITALIZE), true);
if (capitalize) {
@ -537,6 +537,7 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
if (holder.binding.content.getSelectionStart() > 0 && holder.getLayoutPosition() >= 0) {
statusList.get(holder.getLayoutPosition()).cursorPosition = holder.binding.content.getSelectionStart();
}
//Copy/past
int max_car = MastodonHelper.getInstanceMaxChars(context);
if (currentLength > max_car) {

View File

@ -5,5 +5,5 @@ Changed:
- Cross actions with two accounts display a dialog
Fixed:
- Text cleared when adding a media
- Fix crashes