Skip to content

Commit

Permalink
Use "auto" grid size by default
Browse files Browse the repository at this point in the history
  • Loading branch information
wuan committed Oct 21, 2024
1 parent 336be39 commit 58c8721
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class QuickSettingsDialog : DialogFragment() {
val selectedRegion = getSelectedIndex(regionValues, currentRegionValue)

val gridSizeValues = resources.getStringArray(R.array.grid_size_values)
val currentGridSizeValue = preferences.get(PreferenceKey.GRID_SIZE, gridSizeValues[1])
val currentGridSizeValue = preferences.get(PreferenceKey.GRID_SIZE, gridSizeValues[0])
val selectedGridSize = getSelectedIndex(gridSizeValues, currentGridSizeValue)

val countThresholdValues = resources.getStringArray(R.array.count_threshold_values)
Expand Down

0 comments on commit 58c8721

Please sign in to comment.