oops more things to fix!!
This commit is contained in:
parent
6f31595e24
commit
6766222d1e
|
|
@ -135,6 +135,7 @@ namespace NovetusLauncher
|
|||
this.Name = "ItemMaker";
|
||||
this.Text = "Novetus Item SDK";
|
||||
this.Load += new System.EventHandler(this.ItemMakerLoad);
|
||||
this.Closing += new System.ComponentModel.CancelEventHandler(this.ItemMakerClose);
|
||||
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
|
|
|||
|
|
@ -81,6 +81,11 @@ namespace NovetusLauncher
|
|||
}
|
||||
}
|
||||
|
||||
void ItemMakerClose(object sender, CancelEventArgs e)
|
||||
{
|
||||
LauncherFuncs.WriteConfigValues(GlobalVars.ConfigDir + "\\config.ini");
|
||||
}
|
||||
|
||||
void CheckBox1CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (checkBox1.Checked == true)
|
||||
|
|
|
|||
|
|
@ -115,8 +115,7 @@ namespace NovetusLauncher
|
|||
|
||||
void QuickConfigureClose(object sender, CancelEventArgs e)
|
||||
{
|
||||
string cfgpath = GlobalVars.ConfigDir + "\\config.ini";
|
||||
LauncherFuncs.WriteConfigValues(cfgpath);
|
||||
LauncherFuncs.WriteConfigValues(GlobalVars.ConfigDir + "\\config.ini");
|
||||
GlobalVars.ReadyToLaunch = true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue