mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-20 22:26:54 +01:00
turn study lists on by default
This commit is contained in:
parent
94d9a03d51
commit
ea189c5717
2 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue