mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 17:27:00 +00:00
Refactoring
This commit is contained in:
parent
b95b55fb61
commit
78bb0b3b48
2 changed files with 1 additions and 2 deletions
1
FAQ.md
1
FAQ.md
|
@ -34,7 +34,6 @@ Anything on this list is in random order and *might* be added in the near future
|
|||
## Known problems
|
||||
|
||||
* Large replied/forwarded texts resulting in [ANR](https://developer.android.com/topic/performance/vitals/anr)s
|
||||
* Occasional redrawing of conversation thread on new/updated messages
|
||||
* Message text sometimes hidden under *Show original*
|
||||
* File not selected (canceled) when using a file manager instead of the [Storage Access Framework](https://developer.android.com/guide/topics/providers/document-provider)
|
||||
|
||||
|
|
|
@ -261,6 +261,7 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
|
|||
ivFlagged.setVisibility(View.GONE);
|
||||
ivAvatar.setVisibility(View.GONE);
|
||||
tvFrom.setText(null);
|
||||
ivAddContact.setVisibility(View.GONE);
|
||||
tvSize.setText(null);
|
||||
tvTime.setText(null);
|
||||
ivAttachments.setVisibility(View.GONE);
|
||||
|
@ -272,7 +273,6 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
|
|||
tvError.setVisibility(View.GONE);
|
||||
pbLoading.setVisibility(View.VISIBLE);
|
||||
|
||||
ivAddContact.setVisibility(View.GONE);
|
||||
pbHeaders.setVisibility(View.GONE);
|
||||
bnvActions.setVisibility(View.GONE);
|
||||
vSeparatorBody.setVisibility(View.GONE);
|
||||
|
|
Loading…
Reference in a new issue