Fix missing checkbox state

The checkbox state for alwaysShowFeedTitles was not set based on the
current settings.
This commit is contained in:
Bart De Vries 2022-12-14 14:55:32 +01:00
parent 18bebfc31b
commit 906730c516
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ Kirigami.ScrollablePage {
MobileForm.FormCheckDelegate {
id: alwaysShowFeedTitles
text: i18n("Always show podcast titles in subscription view")
checked: SettingsManager.alwaysShowFeedTitles
onToggled: {
SettingsManager.alwaysShowFeedTitles = checked;
SettingsManager.save();