From f779e2b6f0bb1dedc7644c64651b59e31ce62c00 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 25 Nov 2018 11:24:33 +0200 Subject: Some changes in PPC. --- Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs | 6 +++++- 1 file changed, 5 insertions(+), 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 197380475..d84138e0f 100644 --- a/Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs +++ b/Software/Visual_Studio/Tango.Explorer/ExplorerControl.cs @@ -77,7 +77,11 @@ namespace Tango.Explorer _changing_current_path = true; - if (Directory.Exists(CurrentPath)) + if (CurrentPath == null) + { + CurrentFolder = null; + } + else if (Directory.Exists(CurrentPath)) { CurrentFolder = ExplorerFolderItem.LoadFromPath(CurrentPath); } -- cgit v1.3.1