aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2023-04-26 18:42:31 +0300
committerRoy <Roy.mail.net@gmail.com>2023-04-26 18:42:31 +0300
commit1ce740b88ebb7e275bfe8d900c31749af766392b (patch)
treef0c302f1ee564a19f76a17103672e2f6d7647acc /Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs
parent4d8cdd9ea1b383529a17b5e6b7bacdb39a90e42a (diff)
parentaeb2abf154a5e53189aaae24a71542a56eb1f278 (diff)
downloadTango-1ce740b88ebb7e275bfe8d900c31749af766392b.tar.gz
Tango-1ce740b88ebb7e275bfe8d900c31749af766392b.zip
Merged eureka_ppc
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs
index d0f6484ab..14f9db927 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Modules/DefaultPPCModuleLoader.cs
@@ -97,8 +97,8 @@ namespace Tango.PPC.UI.Modules
}
else
{
- LogManager.Log(String.Format("Loading module '{0}'...", nameof(JobsModule)));
- AllModules.Add(new JobsModule());
+ //LogManager.Log(String.Format("Loading module '{0}'...", nameof(JobsModule)));
+ //AllModules.Add(new JobsModule());
}
//Preloaded
@@ -142,7 +142,7 @@ namespace Tango.PPC.UI.Modules
if (settings.UseJobsModuleV2)
{
- var legacyJobsModule = AllModules.SingleOrDefault(x => x.GetType() == typeof(JobsModule));
+ var legacyJobsModule = AllModules.SingleOrDefault(x => x.GetType().Name == "JobsModule");
AllModules.Remove(legacyJobsModule);
}
else