From 3fe5caadd0ceac2deb52d4f64a0cec0f05270e51 Mon Sep 17 00:00:00 2001 From: uye <99072975+ABA2396@users.noreply.github.com> Date: Mon, 18 Aug 2025 20:05:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=82=89=E9=B8=BD=E9=9A=BE=E5=BA=A6?= =?UTF-8?q?=E6=8B=AC=E5=8F=B7=E9=87=8C=E6=98=BE=E7=A4=BA=E4=B8=80=E4=B8=8B?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=E9=9A=BE=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TaskQueue/RoguelikeSettingsUserControlModel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MaaWpfGui/ViewModels/UserControl/TaskQueue/RoguelikeSettingsUserControlModel.cs b/src/MaaWpfGui/ViewModels/UserControl/TaskQueue/RoguelikeSettingsUserControlModel.cs index dd7693a8e9..cbe4a72158 100644 --- a/src/MaaWpfGui/ViewModels/UserControl/TaskQueue/RoguelikeSettingsUserControlModel.cs +++ b/src/MaaWpfGui/ViewModels/UserControl/TaskQueue/RoguelikeSettingsUserControlModel.cs @@ -78,9 +78,9 @@ public class RoguelikeSettingsUserControlModel : TaskViewModel int value = i; var display = value switch { - -1 => LocalizationHelper.GetString("NotSwitch"), - int.MaxValue => "MAX", - 0 => "MIN", + -1 => LocalizationHelper.GetString("NotSwitch") + " (-1)", + int.MaxValue => $"MAX ({maxThemeDifficulty})", + 0 => "MIN (0)", _ => value.ToString(), }; RoguelikeDifficultyList.Add(new() { Display = display, Value = value });