Implicitly enable threads if archived threads are enabled in GUI

pull/1125/head
Tyrrrz 1 year ago
parent 6fb6108610
commit f1c094ac14

@ -35,7 +35,14 @@ public class SettingsViewModel : DialogScreen
public bool ShouldShowArchivedThreads
{
get => _settingsService.ShouldShowArchivedThreads;
set => _settingsService.ShouldShowArchivedThreads = value;
set
{
_settingsService.ShouldShowArchivedThreads = value;
// Enabling archived threads implicitly enables threads
if (value)
ShouldShowThreads = true;
}
}
public string DateFormat

Loading…
Cancel
Save