Revision 70e0b702 trunk/Pithos.Client.WPF/Shell/ShellViewModel.cs

b/trunk/Pithos.Client.WPF/Shell/ShellViewModel.cs
434 434
		    Process.Start(uri);
435 435
		}
436 436

  
437
        public void ShowMiniStatus()
438
        {
439
            var model=IoC.Get<MiniStatusViewModel>();
440
            model.Shell = this;
441
            _windowManager.ShowWindow(model);
442
        }
443

  
437 444
	    /// <summary>
438 445
        /// Open an explorer window to the target path's directory
439 446
        /// and select the file
......
880 887
				notification.Message = "Start Synchronisation";
881 888
			}
882 889

  
890
		    var deleteNotification = notification as CloudDeleteNotification;
891
            if (deleteNotification != null)
892
            {
893
                StatusMessage = String.Format("Deleted {0}", deleteNotification.Data.Name);
894
                return;
895
            }
896

  
883 897
		    var progress = notification as ProgressNotification;
884 898
		    if (progress != null)
885 899
		    {

Also available in: Unified diff