Skip to content

Commit 082c1c9

Browse files
formatting
1 parent 4aaa268 commit 082c1c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Flow.Launcher/ViewModel/SettingWindowViewModel.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -499,14 +499,14 @@ public List<SearchWindowPosition> SearchWindowPositions
499499

500500
public string TimeFormat
501501
{
502-
get { return Settings.TimeFormat; }
503-
set { Settings.TimeFormat = value; }
502+
get => Settings.TimeFormat;
503+
set => Settings.TimeFormat = value;
504504
}
505505

506506
public string DateFormat
507507
{
508-
get { return Settings.DateFormat; }
509-
set { Settings.DateFormat = value; }
508+
get => Settings.DateFormat;
509+
set => Settings.DateFormat = value;
510510
}
511511

512512
public string ClockText => DateTime.Now.ToString(TimeFormat, Culture);

0 commit comments

Comments
 (0)