mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-04-20 21:18:23 +00:00
Implicitly enable threads if archived threads are enabled in GUI
This commit is contained in:
@@ -35,7 +35,14 @@ public class SettingsViewModel : DialogScreen
|
|||||||
public bool ShouldShowArchivedThreads
|
public bool ShouldShowArchivedThreads
|
||||||
{
|
{
|
||||||
get => _settingsService.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
|
public string DateFormat
|
||||||
|
|||||||
Reference in New Issue
Block a user