summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d
diff options
context:
space:
mode:
authorMichael Kolb <kolby@google.com>2013-05-22 09:57:21 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-05-22 09:57:21 -0700
commit0259312504eddbae2f29a1d8a09892fb0e95d8c8 (patch)
tree790d5ceee8f4af1187c3a83bfb92394c4b3c7828 /src/com/android/gallery3d
parent7da344a46f348a5bc9ac958ccf7186b4f7d1c899 (diff)
parentbe4f113fa1fea32e8d8865a52491b9f25760eaba (diff)
downloadandroid_packages_apps_Gallery2-0259312504eddbae2f29a1d8a09892fb0e95d8c8.tar.gz
android_packages_apps_Gallery2-0259312504eddbae2f29a1d8a09892fb0e95d8c8.tar.bz2
android_packages_apps_Gallery2-0259312504eddbae2f29a1d8a09892fb0e95d8c8.zip
am be4f113f: Fix editor on ICS
* commit 'be4f113fa1fea32e8d8865a52491b9f25760eaba': Fix editor on ICS
Diffstat (limited to 'src/com/android/gallery3d')
-rw-r--r--src/com/android/gallery3d/filtershow/category/CategoryAdapter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/filtershow/category/CategoryAdapter.java b/src/com/android/gallery3d/filtershow/category/CategoryAdapter.java
index 4dfaa7fe5..cfa64bc3c 100644
--- a/src/com/android/gallery3d/filtershow/category/CategoryAdapter.java
+++ b/src/com/android/gallery3d/filtershow/category/CategoryAdapter.java
@@ -96,7 +96,7 @@ public class CategoryAdapter extends ArrayAdapter<Action> {
new ListView.LayoutParams(mItemWidth, mItemHeight));
view.setTag(position);
if (mCategory == MainPanel.LOOKS || mCategory == MainPanel.BORDERS) {
- view.setBackground(null);
+ view.setBackgroundResource(0);
}
return view;
}