mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
formatting
This commit is contained in:
parent
4aaa268be7
commit
082c1c9eb6
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue