We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3270bbd commit 12cfd69Copy full SHA for 12cfd69
app/src/main/java/com/github/droidworksstudio/mlauncher/ui/settings/FeaturesFragment.kt
@@ -209,10 +209,10 @@ class FeaturesFragment : Fragment() {
209
title = getString(R.string.settings_text_size),
210
minValue = Constants.MIN_TEXT_SIZE,
211
maxValue = Constants.MAX_TEXT_SIZE,
212
- currentValue = prefs.appSize,
+ currentValue = prefs.settingsSize,
213
onValueSelected = { newSettingsSize ->
214
selectedSettingsSize = newSettingsSize // Update state
215
- prefs.appSize = newSettingsSize // Persist selection in preferences
+ prefs.settingsSize = newSettingsSize // Persist selection in preferences
216
}
217
)
218
0 commit comments