aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-19 18:53:57 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-19 18:53:57 +0300
commitb0255ed4ae2827801d13cec175e57108a0666db9 (patch)
tree12ac9d45076fafcb0d64d0acd1500187b8633a6b /Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs
parenta98c3806ce736eb1578e759720451dd6c3e87199 (diff)
downloadTango-b0255ed4ae2827801d13cec175e57108a0666db9.tar.gz
Tango-b0255ed4ae2827801d13cec175e57108a0666db9.zip
Fixed several issues.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs
index 8d3618fee..154ab68a1 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Navigation/DefaultNavigationManager.cs
@@ -215,7 +215,11 @@ namespace Tango.PPC.UI.Navigation
return false;
}
- if (path.Length == 1 && path[0] == CurrentModule.Name) return true;
+ if (path.Length == 1 && path[0] == CurrentModule.Name)
+ {
+ IsNavigating = false;
+ return true;
+ }
LogManager.Log($"Navigating to: {fullPath}...");