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