Commit b5f0cc30 authored by Thomas's avatar Thomas
Browse files

Fix issue #824

parent 7c1d5a48
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);
+2 −1
Original line number Diff line number Diff line
@@ -9,3 +9,4 @@ Changed:
Fixed:
- Some settings not properly restored (multiple choices)
- Cancel a follow request
- Media with a lot of height in landscape
 No newline at end of file