feat: add option to sort auto translate list

This commit is contained in:
Anna
2022-05-30 00:52:44 -04:00
parent 70cecf4a6d
commit 212835c33a
6 changed files with 673 additions and 1023 deletions
+2
View File
@@ -33,6 +33,7 @@ internal class Configuration : IPluginConfiguration {
public bool LoadPreviousSession;
public bool FilterIncludePreviousSessions;
public bool SharedMode;
public bool SortAutoTranslate;
public bool FontsEnabled = true;
public float FontSize = 17f;
@@ -67,6 +68,7 @@ internal class Configuration : IPluginConfiguration {
this.LoadPreviousSession = other.LoadPreviousSession;
this.FilterIncludePreviousSessions = other.FilterIncludePreviousSessions;
this.SharedMode = other.SharedMode;
this.SortAutoTranslate = other.SortAutoTranslate;
this.FontsEnabled = other.FontsEnabled;
this.FontSize = other.FontSize;
this.JapaneseFontSize = other.JapaneseFontSize;