update first run notification

This commit is contained in:
Hylke Bons 2010-05-20 23:21:40 +01:00
parent beffdebe98
commit 34abd57cd4

View file

@ -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();
*/
} );
}