aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-12-27 13:16:00 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-12-27 13:16:00 +0200
commitaf8530c50d90c12ebe60383e67101920760c314f (patch)
tree53e8f091a3cd8dc2235b38db527ef7798b9c347c /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications
parent9d12fd0ba222619dd5b42816ed004c7b762809dd (diff)
downloadTango-af8530c50d90c12ebe60383e67101920760c314f.tar.gz
Tango-af8530c50d90c12ebe60383e67101920760c314f.zip
Fixed issue with local sync SQL Logic error.
Added some missing columns to SQLite db. Direct Remote Sync is fully working !!!
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications/DefaultNotificationProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications/DefaultNotificationProvider.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications/DefaultNotificationProvider.cs
index ede66dc19..d4d053eaf 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications/DefaultNotificationProvider.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Notifications/DefaultNotificationProvider.cs
@@ -103,7 +103,7 @@ namespace Tango.MachineStudio.UI.Notifications
if (viewTypes == null)
{
- viewTypes = AppDomain.CurrentDomain.GetAssemblies().SelectMany(x => x.GetTypes()).ToList();
+ viewTypes = AppDomain.CurrentDomain.GetAssemblies().Where(x => x.FullName.Contains("MachineStudio")).SelectMany(x => x.GetTypes()).ToList();
}
var viewType = viewTypes.SingleOrDefault(x => x.Name == viewName);