This commit is contained in:
Thomas 2023-03-09 16:42:12 +01:00
parent 7c1d5a4830
commit b5f0cc3097
2 changed files with 4 additions and 2 deletions

View File

@ -1471,7 +1471,8 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
boolean autoplaygif = sharedpreferences.getBoolean(context.getString(R.string.SET_AUTO_PLAY_GIG_MEDIA), true);
if (!fullAttachement || statusToDeal.sensitive) {
int defaultHeight = (int) Helper.convertDpToPixel(300, context);
if (measuredWidth > 0) {
int orientation = context.getResources().getConfiguration().orientation;
if (orientation == Configuration.ORIENTATION_PORTRAIT && measuredWidth > 0) {
defaultHeight = (int) (measuredWidth * 3) / 4;
}
LinearLayoutCompat.LayoutParams lp = new LinearLayoutCompat.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, defaultHeight);

View File

@ -8,4 +8,5 @@ Changed:
Fixed:
- Some settings not properly restored (multiple choices)
- Cancel a follow request
- Cancel a follow request
- Media with a lot of height in landscape