diff options
| author | Alee14 <Alee14498@gmail.com> | 2018-08-26 23:56:45 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2018-08-26 23:56:45 -0400 |
| commit | c75e834420e666c65b016cf7e2f66c393507e4f9 (patch) | |
| tree | e7089e3d9bb708a8f05d2d243d05fb89905d8cc5 | |
| parent | 1296f734716a95fe6d93103a35ddc1d736b1124b (diff) | |
| download | Project-Silicon-c75e834420e666c65b016cf7e2f66c393507e4f9.tar.gz Project-Silicon-c75e834420e666c65b016cf7e2f66c393507e4f9.tar.bz2 Project-Silicon-c75e834420e666c65b016cf7e2f66c393507e4f9.zip | |
Show QuantumNet in menu if it's in debug
| -rw-r--r-- | Project Ports/Desktop.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Project Ports/Desktop.cs b/Project Ports/Desktop.cs index 301ce4d..8c3da63 100644 --- a/Project Ports/Desktop.cs +++ b/Project Ports/Desktop.cs @@ -52,14 +52,18 @@ namespace Project_Ports { #if DEBUG MessageBox.Show("You have set the build to \"Debug\" there are some features that is disabled in this build."); + this.quantumNetBrowserToolStripMenuItem.Visible = true; #endif + dclock.Start(); hijackScreen.Hide(); - if(Properties.Settings.Default.hijacked == true) + + if (Properties.Settings.Default.hijacked == true) { #if DEBUG hijackScreen.Hide(); return; #endif + this.quantumNetBrowserToolStripMenuItem.Visible = false; hijackScreen.Show(); Thread.Sleep(2000); txtHijack.AppendText("PortOS is now booting..." + Environment.NewLine); @@ -128,7 +132,7 @@ namespace Project_Ports } - dclock.Start(); + } |
