feat: add duplicate message collapsing

This commit is contained in:
Anna
2022-06-14 12:33:06 -04:00
parent 771e7d787b
commit 02118163ac
7 changed files with 2084 additions and 1239 deletions
+2
View File
@@ -35,6 +35,7 @@ internal class Configuration : IPluginConfiguration {
public bool FilterIncludePreviousSessions;
public bool SharedMode;
public bool SortAutoTranslate;
public bool CollapseDuplicateMessages;
public bool FontsEnabled = true;
public ExtraGlyphRanges ExtraGlyphRanges = 0;
@@ -71,6 +72,7 @@ internal class Configuration : IPluginConfiguration {
this.FilterIncludePreviousSessions = other.FilterIncludePreviousSessions;
this.SharedMode = other.SharedMode;
this.SortAutoTranslate = other.SortAutoTranslate;
this.CollapseDuplicateMessages = other.CollapseDuplicateMessages;
this.FontsEnabled = other.FontsEnabled;
this.ExtraGlyphRanges = other.ExtraGlyphRanges;
this.FontSize = other.FontSize;