From ca29510e1e336c4d68aaa926cfea6eb72ce42779 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 26 Nov 2019 17:33:02 +0200 Subject: Working on backup/restore... --- Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs') diff --git a/Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs b/Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs index 77116e94c..c1eba0b12 100644 --- a/Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs +++ b/Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs @@ -67,7 +67,7 @@ namespace Tango.Explorer set { SetValue(FilterProperty, value); } } public static readonly DependencyProperty FilterProperty = - DependencyProperty.Register("Filter", typeof(String), typeof(ExplorerControl), new PropertyMetadata(null)); + DependencyProperty.Register("Filter", typeof(String), typeof(ExplorerControl), new PropertyMetadata(null, (d, e) => (d as ExplorerControl).OnCurrentPathChanged())); public bool EnableFileSelection { -- cgit v1.3.1