Skip to content

Commit

Permalink
prep
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencohn committed Mar 13, 2023
1 parent 9efd959 commit c47bffd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@ private void PopulateLanguages()
}


private void PrepTabOnSelectedIndexChanged(object sender, EventArgs e)
{
switch (tabs.SelectedIndex)
{
case 2: analyzeControlPanel.SetFilePath(inputBox.Text); break;
case 3: toolsControlPanel.SetFilePath(inputBox.Text); break;
}
}


// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
// Translate Text

Expand Down Expand Up @@ -601,15 +611,5 @@ private void Restart(object sender, EventArgs e)
restartButton.Visible = false;
translateButton.Visible = true;
}


private void PrepTabOnSelectedIndexChanged(object sender, EventArgs e)
{
switch (tabs.SelectedIndex)
{
case 2: analyzeControlPanel.SetFilePath(inputBox.Text); break;
case 3: toolsControlPanel.SetFilePath(inputBox.Text); break;
}
}
}
}

0 comments on commit c47bffd

Please sign in to comment.