diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/ResultHelper.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/ResultHelper.cs index dc023fb72d..fb81e51f6f 100644 --- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/ResultHelper.cs +++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/ResultHelper.cs @@ -46,8 +46,7 @@ namespace Microsoft.PowerToys.Run.Plugin.Calculator { try { - // Using CurrentUICulture since this is user facing - Clipboard.SetText(roundedResult?.ToString(CultureInfo.CurrentUICulture.NumberFormat)); + Clipboard.SetText(roundedResult?.ToString(CultureInfo.CurrentCulture)); ret = true; } catch (ExternalException)