aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.MFSProfiler/Main.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-05 10:56:48 -0500
committerMichael <[email protected]>2017-02-05 10:56:48 -0500
commit19b13528f6e4ecbef8aaca92d6bdcf7d23d42838 (patch)
treed12032138c15bd0e891856c6f5ead9cc86428a46 /ShiftOS.MFSProfiler/Main.cs
parentb1923154095df7b26d3e5263b5219f38f7c58c38 (diff)
downloadshiftos_thereturn-19b13528f6e4ecbef8aaca92d6bdcf7d23d42838.tar.gz
shiftos_thereturn-19b13528f6e4ecbef8aaca92d6bdcf7d23d42838.tar.bz2
shiftos_thereturn-19b13528f6e4ecbef8aaca92d6bdcf7d23d42838.zip
Server now FULLY encrypts saves
Diffstat (limited to 'ShiftOS.MFSProfiler/Main.cs')
-rw-r--r--ShiftOS.MFSProfiler/Main.cs10
1 files changed, 10 insertions, 0 deletions
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();
+ }
+ }
}
}