Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
fix index issues
Browse files Browse the repository at this point in the history
  • Loading branch information
josealissonbr committed Mar 28, 2022
1 parent 2c46e99 commit 50ad401
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void checkUpdates()

private void MainWindow_Load(object sender, EventArgs e)
{

//Check updates
versionLbl.Text = "Current Version: v" + Application.ProductVersion;
//checkUpdates();
Expand All @@ -96,6 +96,10 @@ private void MainWindow_Load(object sender, EventArgs e)

}
Functions.Console.log("Program Initialized!", this.consoleOutput);

//Fix index issues
metroTabControl1.SelectedIndex = 0;
listBox1.SelectedIndex = 0;
}

private void metroTextBox1_KeyPress(object sender, KeyPressEventArgs e)
Expand Down

0 comments on commit 50ad401

Please sign in to comment.