mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-06-06 01:21:18 -04:00
Implicitly enable threads if archived threads are enabled in GUI
This commit is contained in:
parent
6fb6108610
commit
f1c094ac14
1 changed files with 8 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue