From 34abd57cd4bca8d6993c2e080e4bcc317b4fa793 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 20 May 2010 23:21:40 +0100 Subject: [PATCH] update first run notification --- SparkleShare/SparkleUI.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/SparkleShare/SparkleUI.cs b/SparkleShare/SparkleUI.cs index 2ea6d9b7..f6956865 100644 --- a/SparkleShare/SparkleUI.cs +++ b/SparkleShare/SparkleUI.cs @@ -107,15 +107,16 @@ namespace SparkleShare { SparkleBubble NoFoldersBubble; NoFoldersBubble = new SparkleBubble ("Welcome to SparkleShare!", "You don't have any " + - "folders set up yet.\n" + - "Please create some in " + - "the SparkleShare folder."); + "folders set up yet."); NoFoldersBubble.IconName = "folder-sparkleshare"; - NoFoldersBubble.AddAction ("", "Open SparkleShare Folder", delegate { - Process.StartInfo.FileName = "xdg-open"; + NoFoldersBubble.AddAction ("", "Add a Folder…", delegate { + SparkleDialog SparkleDialog = new SparkleDialog (); + SparkleDialog.ShowAll (); +/* Process.StartInfo.FileName = "xdg-open"; Process.StartInfo.Arguments = SparklePaths.SparklePath; Process.Start(); +*/ } ); }