From 64aeeb1d2784569e4ebf7c72c660458cf4432eee Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Thu, 11 Apr 2019 11:24:39 +0300 Subject: Add menu to tree solution --- .../Scripting/Tango.Scripting.IDE/Dialogs/NewProjectViewVM.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Dialogs/NewProjectViewVM.cs') diff --git a/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Dialogs/NewProjectViewVM.cs b/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Dialogs/NewProjectViewVM.cs index 69cf8034e..98558c7dc 100644 --- a/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Dialogs/NewProjectViewVM.cs +++ b/Software/Visual_Studio/Scripting/Tango.Scripting.IDE/Dialogs/NewProjectViewVM.cs @@ -32,13 +32,13 @@ namespace Tango.Scripting.IDE.Dialogs public RelayCommand BrowseFileCommand { get; set; } #endregion - public NewProjectViewVM() : base() + public NewProjectViewVM(List projectTypes) : base(projectTypes) { Title = "New Project"; BrowseFileCommand = new RelayCommand(BrowseFile); } - public NewProjectViewVM(IEnumerable lastSolutionFolders) : this() + public NewProjectViewVM(IEnumerable lastSolutionFolders, List projectTypes) : this(projectTypes) { LastSolutionPaths = new ObservableCollection(lastSolutionFolders); ProjectLocation = LastSolutionPaths.FirstOrDefault(); -- cgit v1.3.1