From 082c1c9eb61f232c0442fe22a785c66e67412d52 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Thu, 24 Nov 2022 15:31:05 +0800 Subject: [PATCH] formatting --- Flow.Launcher/ViewModel/SettingWindowViewModel.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs index c00fed851..c51e3e421 100644 --- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs +++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs @@ -499,14 +499,14 @@ namespace Flow.Launcher.ViewModel public string TimeFormat { - get { return Settings.TimeFormat; } - set { Settings.TimeFormat = value; } + get => Settings.TimeFormat; + set => Settings.TimeFormat = value; } public string DateFormat { - get { return Settings.DateFormat; } - set { Settings.DateFormat = value; } + get => Settings.DateFormat; + set => Settings.DateFormat = value; } public string ClockText => DateTime.Now.ToString(TimeFormat, Culture);