Skip to content

Commit 12cfd69

Browse files
Fix: Fixed the Settings Text Size
1 parent 3270bbd commit 12cfd69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/com/github/droidworksstudio/mlauncher/ui/settings/FeaturesFragment.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,10 @@ class FeaturesFragment : Fragment() {
209209
title = getString(R.string.settings_text_size),
210210
minValue = Constants.MIN_TEXT_SIZE,
211211
maxValue = Constants.MAX_TEXT_SIZE,
212-
currentValue = prefs.appSize,
212+
currentValue = prefs.settingsSize,
213213
onValueSelected = { newSettingsSize ->
214214
selectedSettingsSize = newSettingsSize // Update state
215-
prefs.appSize = newSettingsSize // Persist selection in preferences
215+
prefs.settingsSize = newSettingsSize // Persist selection in preferences
216216
}
217217
)
218218
}

0 commit comments

Comments
 (0)