Skip to content

Commit

Permalink
Enable strict list separation
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Behrens committed May 7, 2023
1 parent 81bc3c2 commit 959c877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public class PreferenceActivity extends android.preference.PreferenceActivity
public static final String PREFS_USE_FILTERS = "use_filters";
public static final boolean PREFS_USE_FILTERS_DEFAULT = false;
public static final String PREFS_CURRENT_LIST_COMPLETE = "autocomplete_only_this_list";
public static final boolean PREFS_CURRENT_LIST_COMPLETE_DEFAULT = false;
public static final boolean PREFS_CURRENT_LIST_COMPLETE_DEFAULT = true;
public static final String PREFS_SORT_PER_LIST = "perListSort";
public static final boolean PREFS_SORT_PER_LIST_DEFAULT = false;
public static final String PREFS_HOLO_SEARCH = "holosearch";
Expand Down
2 changes: 1 addition & 1 deletion ShoppingList/src/main/res/xml/preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
android:summary="@string/preference_reset_quantity_summary"
android:title="@string/preference_reset_quantity" />
<CheckBoxPreference
android:defaultValue="false"
android:defaultValue="true"
android:key="autocomplete_only_this_list"
android:summaryOff="@string/preference_complete_by_list_off_summary"
android:summaryOn="@string/preference_complete_by_list_on_summary"
Expand Down

0 comments on commit 959c877

Please sign in to comment.