turn study lists on by default

This commit is contained in:
Eric House 2014-03-14 06:45:17 -07:00
parent 94d9a03d51
commit ea189c5717
2 changed files with 2 additions and 2 deletions

View file

@ -249,7 +249,7 @@
<CheckBoxPreference android:key="@string/key_studyon"
android:title="@string/title_studyon"
android:summary="@string/summary_studyon"
android:defaultValue="false"
android:defaultValue="true"
/>
<CheckBoxPreference android:key="@string/key_ringer_zoom"
android:title="@string/ringer_zoom"

View file

@ -372,7 +372,7 @@ public class XWPrefs {
public static boolean getStudyEnabled( Context context )
{
return getPrefsBoolean( context, R.string.key_studyon, false );
return getPrefsBoolean( context, R.string.key_studyon, true );
}
protected static String getPrefsString( Context context, int keyID )