aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Wong <wongma7@outlook.com>2015-10-18 21:54:25 -0400
committerMatthew Wong <wongma7@outlook.com>2015-10-18 21:54:25 -0400
commit91c7f8f558cc191f26804cd72bc50bbd257b194c (patch)
treeb9850c58367b8b3fc4480bf5d5c784a73ad2b159
parent389501730f1a8a24ea16aeaddfbfdc29ed3714de (diff)
Correct background color of 'app settings'
-rw-r--r--app/src/main/java/com/zeapo/pwdstore/autofill/AutofillRecyclerAdapter.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/autofill/AutofillRecyclerAdapter.java b/app/src/main/java/com/zeapo/pwdstore/autofill/AutofillRecyclerAdapter.java
index a131598a..15f114c6 100644
--- a/app/src/main/java/com/zeapo/pwdstore/autofill/AutofillRecyclerAdapter.java
+++ b/app/src/main/java/com/zeapo/pwdstore/autofill/AutofillRecyclerAdapter.java
@@ -101,8 +101,7 @@ public class AutofillRecyclerAdapter extends RecyclerView.Adapter<AutofillRecycl
switch (preference) {
case "":
holder.secondary.setVisibility(View.GONE);
- // "android:windowBackground"
- holder.view.setBackgroundResource(R.color.indigo_50);
+ holder.view.setBackgroundResource(0);
break;
case "/first":
holder.secondary.setText(R.string.autofill_apps_first);