From cbd407853dfa9fe0306f4e548ab3ca7af81c41cc Mon Sep 17 00:00:00 2001 From: zggsong Date: Mon, 4 Mar 2024 14:06:20 +0800 Subject: [PATCH] perf: Adding more wide (max) height stops --- STranslate.Model/Enums.cs | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/STranslate.Model/Enums.cs b/STranslate.Model/Enums.cs index ca7d3a9e..dba6e378 100644 --- a/STranslate.Model/Enums.cs +++ b/STranslate.Model/Enums.cs @@ -301,11 +301,17 @@ public enum MaxHeight : int [Description("最小高度")] Minimum = 328, + [Description("较小高度")] + Smaller = 496, + [Description("中等高度")] - Medium = 496, + Medium = 600, + + [Description("较大高度")] + Maximum = 700, [Description("最大高度")] - Maximum = 800, + Larger = 800, [Description("工作区高度")] WorkAreaMaximum = 9999 @@ -319,8 +325,14 @@ public enum WidthEnum : int [Description("最小宽度")] Minimum = 480, + [Description("较小宽度")] + Smaller = 600, + [Description("中等宽度")] - Medium = 600, + Medium = 800, + + [Description("较大宽度")] + Larger = 1000, [Description("最大宽度")] Maximum = 1200,