summaryrefslogtreecommitdiffstats
path: root/src/com/cyngn/theme/chooser/ChooserActivity.java
diff options
context:
space:
mode:
authord34d <clark@cyngn.com>2015-11-05 13:21:43 -0800
committerd34d <clark@cyngn.com>2015-11-05 13:22:15 -0800
commit4b847d1262bd0f3038a2cdee8c9743c56bb0b803 (patch)
tree5aa6823d06b1e3f8de701157909846f666f3e9cd /src/com/cyngn/theme/chooser/ChooserActivity.java
parent22b8c53850bb9839723e51e898ab25c0b4421474 (diff)
downloadpackages_apps_ThemeChooser-4b847d1262bd0f3038a2cdee8c9743c56bb0b803.zip
packages_apps_ThemeChooser-4b847d1262bd0f3038a2cdee8c9743c56bb0b803.tar.gz
packages_apps_ThemeChooser-4b847d1262bd0f3038a2cdee8c9743c56bb0b803.tar.bz2
Revert "Add live lock screen support for dogefood"
This reverts commit 590804752bc280f2905b3bf86b49e467fd0fd610. Change-Id: Ifc42fe865677179d6570d457242c6ee469947afc
Diffstat (limited to 'src/com/cyngn/theme/chooser/ChooserActivity.java')
-rw-r--r--src/com/cyngn/theme/chooser/ChooserActivity.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/cyngn/theme/chooser/ChooserActivity.java b/src/com/cyngn/theme/chooser/ChooserActivity.java
index b395ecc..c851abe 100644
--- a/src/com/cyngn/theme/chooser/ChooserActivity.java
+++ b/src/com/cyngn/theme/chooser/ChooserActivity.java
@@ -65,7 +65,6 @@ import java.util.Map;
import static android.provider.ThemesContract.ThemesColumns.MODIFIES_ALARMS;
import static android.provider.ThemesContract.ThemesColumns.MODIFIES_BOOT_ANIM;
-import static android.provider.ThemesContract.ThemesColumns.MODIFIES_LIVE_LOCK_SCREEN;
import static android.provider.ThemesContract.ThemesColumns.MODIFIES_NOTIFICATIONS;
import static android.provider.ThemesContract.ThemesColumns.MODIFIES_RINGTONES;
@@ -507,7 +506,7 @@ public class ChooserActivity extends FragmentActivity
final Resources res = getResources();
int itemsPerPage = res.getInteger(R.integer.default_items_per_page);
int height = res.getDimensionPixelSize(R.dimen.component_selection_cell_height);
- if (MODIFIES_BOOT_ANIM.equals(component) || MODIFIES_LIVE_LOCK_SCREEN.equals(component)) {
+ if (MODIFIES_BOOT_ANIM.equals(component)) {
itemsPerPage = res.getInteger(R.integer.bootani_items_per_page);
height = res.getDimensionPixelSize(
R.dimen.component_selection_cell_height_boot_anim);