From e80f4fcddbc38aa2b2424344ae0b6bcd9cd9f3fa Mon Sep 17 00:00:00 2001 From: uye <2396806385@qq.com> Date: Sat, 19 Nov 2022 00:47:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=9F=BA=E5=BB=BA?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E5=BF=83=E6=83=85=E9=98=88=E5=80=BC=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=B8=8E=E5=AE=9E=E9=99=85=E4=B8=8D=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MeoAsstGui/ViewModels/SettingsViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MeoAsstGui/ViewModels/SettingsViewModel.cs b/src/MeoAsstGui/ViewModels/SettingsViewModel.cs index db1bfdf62c..afbd63c5d1 100644 --- a/src/MeoAsstGui/ViewModels/SettingsViewModel.cs +++ b/src/MeoAsstGui/ViewModels/SettingsViewModel.cs @@ -536,8 +536,8 @@ namespace MeoAsstGui get => _dormThreshold; set { - DormThresholdLabel = Localization.GetString("DormThreshold") + ": " + _dormThreshold + "%"; SetAndNotify(ref _dormThreshold, value); + DormThresholdLabel = Localization.GetString("DormThreshold") + ": " + _dormThreshold + "%"; ViewStatusStorage.Set("Infrast.DormThreshold", value.ToString()); } }