From c647a9202d4d90a7db4a87e6449c85e24b751dbb Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 4 Nov 2012 15:46:49 +0000 Subject: [PATCH] setup: fix Show Files button for project names containing underscores --- SparkleShare/SparkleSetupController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SparkleShare/SparkleSetupController.cs b/SparkleShare/SparkleSetupController.cs index dd590144..38c786ba 100755 --- a/SparkleShare/SparkleSetupController.cs +++ b/SparkleShare/SparkleSetupController.cs @@ -539,6 +539,7 @@ namespace SparkleShare { public void ShowFilesClicked () { string folder_name = Path.GetFileName (PreviousPath); + folder_name = folder_name.Replace ("_", " "); if (PreviousPath.EndsWith ("-crypto")) folder_name = folder_name.Replace ("-crypto", "");