Fix incorrect check in Selective Sync that prevented folder changes to propagate...
[pithos-ms-client] / trunk / Pithos.Client.WPF / FileProperties / ContainerPropertiesViewModel.cs
index 9eeb56b..8a7ffc5 100644 (file)
@@ -45,6 +45,7 @@ using System.Collections.Generic;
 using System.Collections.ObjectModel;
 using System.ComponentModel.Composition;
 using System.Diagnostics.Contracts;
+using System.IO;
 using System.Linq;
 using System.Net;
 using System.Text;
@@ -368,6 +369,9 @@ namespace Pithos.Client.WPF.FileProperties
             _policies.CollectionChanged += (sender, evt) => { PoliciesChanged = true; };
 */
 
+            var name = Path.GetFileName(localFolderName);
+            DisplayName = String.Format("{0} Container Properties", name);
+
             Shell = shell;
             ContainerName = localFolderName;
             container.ContinueWith(t =>{