Remove: Unused list animation preference

This commit is contained in:
machiav3lli 2022-07-06 02:43:52 +02:00
parent c9637fa647
commit 85f4cb4a59
2 changed files with 0 additions and 8 deletions

View File

@ -26,7 +26,6 @@ object Preferences {
Key.AutoSync, Key.AutoSync,
Key.InstallAfterSync, Key.InstallAfterSync,
Key.IncompatibleVersions, Key.IncompatibleVersions,
Key.ListAnimation,
Key.ShowScreenshots, Key.ShowScreenshots,
Key.UpdatedApps, Key.UpdatedApps,
Key.NewApps, Key.NewApps,
@ -146,9 +145,6 @@ object Preferences {
object IncompatibleVersions : object IncompatibleVersions :
Key<Boolean>("incompatible_versions", Value.BooleanValue(false)) Key<Boolean>("incompatible_versions", Value.BooleanValue(false))
object ListAnimation :
Key<Boolean>("list_animation", Value.BooleanValue(false))
object ShowScreenshots : object ShowScreenshots :
Key<Boolean>("show_screenshots", Value.BooleanValue(true)) Key<Boolean>("show_screenshots", Value.BooleanValue(true))

View File

@ -44,10 +44,6 @@ class PrefsUserFragment : PrefsNavFragmentX() {
is Preferences.DefaultTab.Installed -> getString(R.string.installed) is Preferences.DefaultTab.Installed -> getString(R.string.installed)
} }
} }
addSwitch(
Preferences.Key.ListAnimation, getString(R.string.list_animation),
getString(R.string.list_animation_description)
)
addSwitch( addSwitch(
Preferences.Key.ShowScreenshots, getString(R.string.show_screenshots), Preferences.Key.ShowScreenshots, getString(R.string.show_screenshots),
getString(R.string.show_screenshots_description) getString(R.string.show_screenshots_description)