Directory.CreateDirectory (CrowConfigRoot);
//ensure all assemblies are loaded, because IML could contains classes not instanciated in source
-// foreach (string af in Directory.GetFiles (AppDomain.CurrentDomain.BaseDirectory, "*.dll")){
-// try {
-// Assembly.LoadFrom (af);
-// } catch (Exception ex) {
-// Console.WriteLine ("{0} not loaded as assembly.", af);
-// }
-// }
+ foreach (string af in Directory.GetFiles (AppDomain.CurrentDomain.BaseDirectory, "*.dll")){
+ try {
+ Assembly.LoadFrom (af);
+ } catch (Exception ex) {
+ Console.WriteLine ("{0} not loaded as assembly.", af);
+ }
+ }
loadCursors ();
findAvailableTemplates ();
}
GraphicTree [i].checkHoverWidget (e);
+ HoverWidget.onMouseMove (this, e);
return true;
}
}
if (HoverWidget.MouseIsIn (e.Position)) {
HoverWidget.checkHoverWidget (e);
+ HoverWidget.onMouseMove (this, e);
return true;
} else {
HoverWidget.onMouseLeave (HoverWidget, e);
HoverWidget = HoverWidget.LogicalParent as GraphicObject;
if (HoverWidget.MouseIsIn (e.Position)) {
HoverWidget.checkHoverWidget (e);
+ HoverWidget.onMouseMove (this, e);
return true;
} else
HoverWidget.onMouseLeave (HoverWidget, e);
g.checkHoverWidget (e);
if (g is Window)
PutOnTop (g);
+ HoverWidget.onMouseMove (this, e);
return true;
}
}