From e3ca5052f4377335cea0aa5a900bc2df9587c95e Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 6 Jan 2018 12:24:24 +0100 Subject: [PATCH] presets: Fix local presets path. Closes #1792 --- Sparkles/Preset.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sparkles/Preset.cs b/Sparkles/Preset.cs index 1a85376e..86d68fca 100644 --- a/Sparkles/Preset.cs +++ b/Sparkles/Preset.cs @@ -27,7 +27,7 @@ namespace Sparkles { public static string PresetsPath = ""; public static string LocalPresetsPath = IO.Path.Combine ( - Environment.GetFolderPath (Environment.SpecialFolder.ApplicationData), "sparkleshare", "presets"); + Environment.GetFolderPath (Environment.SpecialFolder.ApplicationData), "org.sparkleshare.SparkleShare", "presets"); new public string Name { get { return GetValue ("info", "name"); } } public string Description { get { return GetValue ("info", "description"); } }