From aa73bf8129495638815a99f39cc1e5e55e58675a Mon Sep 17 00:00:00 2001 From: DucDangAnh Date: Mon, 20 Jul 2020 15:38:37 +0700 Subject: [PATCH] ConfigurationForm - btnSaveSettings_Click: fix typo --- AIParkingApplication/ConfigurationForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AIParkingApplication/ConfigurationForm.cs b/AIParkingApplication/ConfigurationForm.cs index 34cdf07..ac335ff 100644 --- a/AIParkingApplication/ConfigurationForm.cs +++ b/AIParkingApplication/ConfigurationForm.cs @@ -34,7 +34,7 @@ namespace AIParkingApplication Util.UpsertAppSettings("USE_PRINTER", chkAllowUsePrinter.Checked.ToString().ToLower()); Util.UpsertAppSettings("ALLOW_CHANGE_ROI_RECT", chkAllowChangeROIRect.Checked.ToString().ToLower()); Util.UpsertAppSettings("AUTO_LOGIN", chkAllowAutoLogin.Checked.ToString().ToLower()); - toolStripStatusLabelSavedSettingStatus.Text = $"{DateTime.Now.GetTimeFormatted()}\tĐã lưu cài đặt"; + toolStripStatusLabelSavedSettingStatus.Text = $"{DateTime.Now.GetTimeFormatted()} Đã lưu cài đặt"; } private void ConfigurationForm_Load(object sender, EventArgs e)