mirror of https://github.com/M66B/FairEmail.git
parent
9936655830
commit
abe2e4bce2
|
@ -1490,18 +1490,16 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
|
||||
int height = properties.getHeight(message.id, 0);
|
||||
if (height == 0) {
|
||||
tvBody.setMinHeight(0);
|
||||
tvBody.setVisibility(View.GONE);
|
||||
wvBody.setMinimumHeight(0);
|
||||
wvBody.setVisibility(View.GONE);
|
||||
} else {
|
||||
boolean show_full = properties.getValue("full", message.id);
|
||||
if (show_full) {
|
||||
wvBody.setMinimumHeight(height);
|
||||
wvBody.setVisibility(View.INVISIBLE);
|
||||
wvBody.setMinimumHeight(height);
|
||||
} else {
|
||||
tvBody.setMinHeight(height);
|
||||
tvBody.setVisibility(View.INVISIBLE);
|
||||
tvBody.setMinHeight(height);
|
||||
}
|
||||
}
|
||||
pbBody.setVisibility(View.GONE);
|
||||
|
|
Loading…
Reference in New Issue