From 85552138bad71b8b005dfa959586ee1d66f6447e Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Wed, 4 Jan 2012 18:20:59 -0800 Subject: [PATCH] Fixed styling issue with repeat days of week --- .../com/todoroo/astrid/repeats/RepeatControlSet.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/repeats/RepeatControlSet.java b/astrid/plugin-src/com/todoroo/astrid/repeats/RepeatControlSet.java index 3bf22f059..881732467 100644 --- a/astrid/plugin-src/com/todoroo/astrid/repeats/RepeatControlSet.java +++ b/astrid/plugin-src/com/todoroo/astrid/repeats/RepeatControlSet.java @@ -98,7 +98,6 @@ public class RepeatControlSet extends PopupControlSet { LinearLayout.LayoutParams textLp = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT, 1.0f/14); for(int i = 0; i < 7; i++) { CheckBox checkBox = new CheckBox(activity); - checkBox.setTextColor(activity.getResources().getColor(android.R.color.white)); int dayOfWeek = calendar.get(Calendar.DAY_OF_WEEK); checkBox.setPadding(0, 0, 0, 0); checkBox.setLayoutParams(lp); @@ -107,7 +106,7 @@ public class RepeatControlSet extends PopupControlSet { checkBox.setButtonDrawable(R.drawable.btn_check_small); TextView label = new TextView(activity); - label.setTextAppearance(activity, android.R.style.TextAppearance); + label.setTextAppearance(activity, R.style.TextAppearance_GEN_EditLabel); label.setLayoutParams(textLp); label.setTextSize(14); label.setText(dfs.getShortWeekdays()[dayOfWeek].substring(0, 1));