From 19b13528f6e4ecbef8aaca92d6bdcf7d23d42838 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 5 Feb 2017 10:56:48 -0500 Subject: Server now FULLY encrypts saves --- ShiftOS.MFSProfiler/Main.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ShiftOS.MFSProfiler/Main.cs') diff --git a/ShiftOS.MFSProfiler/Main.cs b/ShiftOS.MFSProfiler/Main.cs index dbfe276..39f087c 100644 --- a/ShiftOS.MFSProfiler/Main.cs +++ b/ShiftOS.MFSProfiler/Main.cs @@ -65,6 +65,7 @@ namespace ShiftOS.MFSProfiler public void RecursiveDirectoryAdd(TreeNode node) { + node.ContextMenuStrip = ctxfileoptions; foreach (var dir in GetDirectories(node.Tag.ToString())) { var dirInf = GetDirectoryInfo(dir); @@ -131,5 +132,14 @@ System path: {tvfiles.SelectedNode.Tag.ToString()}"; } } catch { } } + + private void newFileToolStripMenuItem_Click(object sender, EventArgs e) + { + var fCreator = new FileCreator(tvfiles.SelectedNode.Tag.ToString()); + if(fCreator.ShowDialog() == DialogResult.OK) + { + SetupTree(); + } + } } } -- cgit v1.2.3