Skip to content

Commit

Permalink
feat: possibility to disable wallpaper changer per homescreen/lockscreen
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro committed Nov 20, 2023
1 parent ff057e1 commit bc650a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ fun WallpaperChangerPref(config: WallpaperConfig, onChange: (WallpaperConfig) ->
}
)
)
val wallpaperSources = listOf(R.string.online, R.string.favorites, R.string.local)
val wallpaperSources = listOf(R.string.online, R.string.favorites, R.string.local, R.string.none)
var wallpaperSource by remember { mutableStateOf(config.source) }
ListPreference(
prefKey = null,
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<string name="export_favorites">Export favorites</string>
<string name="success">Success!</string>
<string name="current_directory">Current</string>
<string name="none">None</string>
<!-- Wallpaper changer source -->
<string name="online">Online</string>
<string name="local">Local</string>
Expand Down

0 comments on commit bc650a8

Please sign in to comment.