From 1e71830891ee55b367e602153647151ea0ea3d6f Mon Sep 17 00:00:00 2001 From: Ishmaeel Date: Sat, 10 Aug 2024 22:11:51 +1000 Subject: [PATCH] Fix ClockText and DateText to use CurrentUICulture --- .../SettingPages/ViewModels/SettingsPaneThemeViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs index b9e821913b0..f2e52dbaed9 100644 --- a/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs +++ b/Flow.Launcher/SettingPages/ViewModels/SettingsPaneThemeViewModel.cs @@ -155,9 +155,9 @@ public bool KeepMaxResults set => Settings.KeepMaxResults = value; } - public string ClockText => DateTime.Now.ToString(TimeFormat, CultureInfo.CurrentCulture); + public string ClockText => DateTime.Now.ToString(TimeFormat, CultureInfo.CurrentUICulture); - public string DateText => DateTime.Now.ToString(DateFormat, CultureInfo.CurrentCulture); + public string DateText => DateTime.Now.ToString(DateFormat, CultureInfo.CurrentUICulture); public bool UseGlyphIcons {