From d1d272a9e79605bf4a50c1d27630651cd5fa8c62 Mon Sep 17 00:00:00 2001 From: zh3305 Date: Wed, 4 Dec 2024 09:44:07 +0800 Subject: [PATCH] fix(Logbert): Optimize time offset settings and loading logic - Revise the time offset setting logic to use newValue instead of mTimeShiftValue.TotalMilliseconds - Update the time offset loading method to directly use Settings.Default.TimeShiftValue - Remove the call to SetTimeshiftValue() method, opting to initialize the time offset when the form loads --- src/Logbert/Dialogs/Docking/FrmLogDocument.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Logbert/Dialogs/Docking/FrmLogDocument.cs b/src/Logbert/Dialogs/Docking/FrmLogDocument.cs index 113d773..2503e4c 100644 --- a/src/Logbert/Dialogs/Docking/FrmLogDocument.cs +++ b/src/Logbert/Dialogs/Docking/FrmLogDocument.cs @@ -1028,9 +1028,9 @@ private void SetTimeshiftValue() break; } - if (Settings.Default.TimeShiftValue != mTimeShiftValue.TotalMilliseconds) + if (Settings.Default.TimeShiftValue != newValue) { - Settings.Default.TimeShiftValue = mTimeShiftValue.TotalMilliseconds; + Settings.Default.TimeShiftValue = newValue; Settings.Default.SaveSettings(); } } @@ -1318,8 +1318,10 @@ public FrmLogDocument(ILogProvider logProvider) ((FrmLogWindow)mLogWindow).OnLogMessageSelected += OnLogMessageSelected; LogDockPanel.Theme = ThemeManager.CurrentApplicationTheme.DockingTheme; - - SetTimeshiftValue(); + txtTimeShift.Text = ((int)Settings.Default.TimeShiftValue).ToString(); + tsbTimeShift.Checked = true; + TsbTimeShiftClick(this, EventArgs.Empty); + // SetTimeshiftValue(); } #endregion