Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Addins.GuiGtk3/Mono.Addins.Gui/NewSiteDialog.cs')
-rw-r--r--Mono.Addins.GuiGtk3/Mono.Addins.Gui/NewSiteDialog.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono.Addins.GuiGtk3/Mono.Addins.Gui/NewSiteDialog.cs b/Mono.Addins.GuiGtk3/Mono.Addins.Gui/NewSiteDialog.cs
index db65ec8..5de4c03 100644
--- a/Mono.Addins.GuiGtk3/Mono.Addins.Gui/NewSiteDialog.cs
+++ b/Mono.Addins.GuiGtk3/Mono.Addins.Gui/NewSiteDialog.cs
@@ -113,7 +113,7 @@ namespace Mono.Addins.GuiGtk3
dlg.AddButton (Gtk.Stock.Cancel, Gtk.ResponseType.Cancel);
dlg.AddButton (Gtk.Stock.Open, Gtk.ResponseType.Ok);
- dlg.SetFilename (Environment.GetFolderPath (Environment.SpecialFolder.Personal));
+ dlg.SetFilename (Environment.GetFolderPath (Environment.SpecialFolder.UserProfile));
if (dlg.Run () == (int) ResponseType.Ok) {
pathEntry.Text = dlg.Filename;
}