@@ -187,22 +187,6 @@ class NeoPrefs private constructor(val context: Context) {
187187 }
188188 )
189189
190- var profileTransparentBgIcons = BooleanPref (
191- titleId = R .string.title_themed_background,
192- dataStore = dataStore,
193- key = PrefKey .PROFILE_ICON_TRANSPARENT_BG ,
194- defaultValue = false
195- )
196-
197- var profileShapeLessIcon = BooleanPref (
198- titleId = R .string.title_force_shapeless,
199- summaryId = R .string.summary_force_shapeless,
200- dataStore = dataStore,
201- key = PrefKey .PROFILE_ICON_SHAPE_LESS ,
202- defaultValue = false ,
203- onChange = { reloadModel() }
204- )
205-
206190 var profileIconColoredBackground = BooleanPref (
207191 dataStore = dataStore,
208192 key = PrefKey .PROFILE_ICON_COLORED_BG ,
@@ -214,6 +198,17 @@ class NeoPrefs private constructor(val context: Context) {
214198 }
215199 )
216200
201+ var profileIconShadow = BooleanPref (
202+ dataStore = dataStore,
203+ key = PrefKey .PROFILE_ICON_SHADOW ,
204+ titleId = R .string.title_show_icon_shadow,
205+ summaryId = R .string.summary_show_icon_shadow,
206+ defaultValue = false ,
207+ onChange = {
208+ legacyPrefs.savePreference(" profile_icon_shadow" , it)
209+ }
210+ )
211+
217212 var profileIconAdaptify = BooleanPref (
218213 dataStore = dataStore,
219214 key = PrefKey .PROFILE_ICON_ADAPTIFY ,
0 commit comments