- Timestamp:
- 12/14/15 20:47:28 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Scripting/ProgrammableItemView.cs
r13459 r13467 64 64 } else { 65 65 codeEditor.UserCode = Content.Code; 66 variableStoreView.Content = Content.VariableStore; 66 67 Locked = true; 67 68 Task t = Task.Factory.StartNew(() => { 68 69 foreach (var asm in Content.GetAssemblies()) 69 70 codeEditor.AddAssembly(asm); 70 variableStoreView.Content = Content.VariableStore;71 71 }); 72 72 await t;
Note: See TracChangeset
for help on using the changeset viewer.