From 2860ce241f64b455c95bef73b708bd581543535a Mon Sep 17 00:00:00 2001 From: Olaf Wintermann Date: Sat, 20 Dec 2025 00:09:30 +0100 Subject: [PATCH] fix that save in the settings dialog does not update the settings file --- .../src/main/kotlin/de/unixwork/rssreader/ConfigWindow.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rss-application/src/main/kotlin/de/unixwork/rssreader/ConfigWindow.kt b/rss-application/src/main/kotlin/de/unixwork/rssreader/ConfigWindow.kt index 829f5c1..4e19ef2 100644 --- a/rss-application/src/main/kotlin/de/unixwork/rssreader/ConfigWindow.kt +++ b/rss-application/src/main/kotlin/de/unixwork/rssreader/ConfigWindow.kt @@ -125,7 +125,7 @@ class ConfigWindow { } else { App.settings.maxItemAge = 0 } - + App.settings.store() } fun show() { -- 2.47.3