summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-10-15 12:02:31 +0400
committerAndrew Dolgov <[email protected]>2012-10-15 12:02:31 +0400
commit742eb6ebf36d6bfe9a1b51432a1b455efcc8a0d9 (patch)
tree5a5bbb3f210d28b3b0e32efda2ee7ed3abc7f0af /src
parenta7730f0509cda1b32ef94314fd8e4b4a00c9fefe (diff)
use smaller thumbnails in the list
Diffstat (limited to 'src')
-rw-r--r--src/org/fox/ttcomics/ComicListFragment.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/fox/ttcomics/ComicListFragment.java b/src/org/fox/ttcomics/ComicListFragment.java
index 18f092a..ee35059 100644
--- a/src/org/fox/ttcomics/ComicListFragment.java
+++ b/src/org/fox/ttcomics/ComicListFragment.java
@@ -122,7 +122,7 @@ public class ComicListFragment extends Fragment implements OnItemClickListener {
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(thumbnailFile.getAbsolutePath(), options);
- options.inSampleSize = CommonActivity.calculateInSampleSize(options, 200, 200);
+ options.inSampleSize = CommonActivity.calculateInSampleSize(options, 128, 128);
options.inJustDecodeBounds = false;
Bitmap bmp = BitmapFactory.decodeFile(thumbnailFile.getAbsolutePath(), options);