Disable block & ignore filter during recording

This commit is contained in:
relikd
2020-08-29 18:36:41 +02:00
parent 8fcb5ad874
commit 7dbf21d564
5 changed files with 36 additions and 5 deletions

View File

@@ -23,6 +23,11 @@ enum PrefsShared {
get { Int("AutoDeleteLogsDays") }
set { Int("AutoDeleteLogsDays", newValue) }
}
static var CurrentlyRecording: Bool {
get { Bool("CurrentlyRecording") }
set { Bool("CurrentlyRecording", newValue) }
}
}