We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aaa268 commit 082c1c9Copy full SHA for 082c1c9
Flow.Launcher/ViewModel/SettingWindowViewModel.cs
@@ -499,14 +499,14 @@ public List<SearchWindowPosition> SearchWindowPositions
499
500
public string TimeFormat
501
{
502
- get { return Settings.TimeFormat; }
503
- set { Settings.TimeFormat = value; }
+ get => Settings.TimeFormat;
+ set => Settings.TimeFormat = value;
504
}
505
506
public string DateFormat
507
508
- get { return Settings.DateFormat; }
509
- set { Settings.DateFormat = value; }
+ get => Settings.DateFormat;
+ set => Settings.DateFormat = value;
510
511
512
public string ClockText => DateTime.Now.ToString(TimeFormat, Culture);
0 commit comments