[DescriptionFragment] Fix thumbnail size: width x height
height x width was used before which is an uncommon order.
This commit is contained in:
parent
56a043669a
commit
e6daf45c83
1 changed files with 2 additions and 2 deletions
|
|
@ -216,9 +216,9 @@ public abstract class BaseDescriptionFragment extends BaseFragment {
|
|||
|| image.getWidth() != Image.WIDTH_UNKNOWN
|
||||
// if even the resolution level is unknown, ?x? will be shown
|
||||
|| image.getEstimatedResolutionLevel() == Image.ResolutionLevel.UNKNOWN) {
|
||||
urls.append(imageSizeToText(image.getHeight()));
|
||||
urls.append('x');
|
||||
urls.append(imageSizeToText(image.getWidth()));
|
||||
urls.append('x');
|
||||
urls.append(imageSizeToText(image.getHeight()));
|
||||
} else {
|
||||
switch (image.getEstimatedResolutionLevel()) {
|
||||
case LOW -> urls.append(getString(R.string.image_quality_low));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue