private void button36_Click(object sender, EventArgs e)
 {
     if (GlobalVars.UserConfiguration.QualityLevel == Settings.GraphicsOptions.Level.Custom)
     {
         CustomGraphicsOptions opt = new CustomGraphicsOptions();
         opt.Show();
     }
     else
     {
         MessageBox.Show("You do not have the 'Custom' option selected. Please select it before continuing.");
     }
 }
 private void button1_Click(object sender, EventArgs e)
 {
     if (GlobalVars.UserConfiguration.QualityLevel == Settings.Level.Custom)
     {
         GlobalFuncs.Config(GlobalPaths.ConfigDir + "\\" + GlobalPaths.ConfigName, true);
         CustomGraphicsOptions opt = new CustomGraphicsOptions();
         opt.Show();
     }
     else
     {
         MessageBox.Show("You do not have the 'Custom' option selected. Please select it before continuing.", "Novetus - Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
 private void button1_Click(object sender, EventArgs e)
 {
     if (comboBox2.SelectedIndex == 6)
     {
         GlobalFuncs.Config(GlobalPaths.ConfigDir + "\\" + GlobalPaths.ConfigName, true);
         CustomGraphicsOptions opt = new CustomGraphicsOptions();
         opt.Show();
     }
     else
     {
         MessageBox.Show("You do not have the 'Custom' option selected. Please select it before continuing.");
     }
 }