Skip to content

Commit

Permalink
xte fix, cancal on field menu
Browse files Browse the repository at this point in the history
  • Loading branch information
farmerbriantee committed Apr 12, 2024
1 parent 0055b51 commit 4b78282
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 33 deletions.
27 changes: 18 additions & 9 deletions SourceCode/GPS/Forms/Controls.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions SourceCode/GPS/Forms/Field/FormJob.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion SourceCode/GPS/Forms/Field/FormJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public partial class FormJob : Form

public FormJob(Form callingForm)
{
//get copy of the calling main form
//get ref of the calling main form
mf = callingForm as FormGPS;

InitializeComponent();
Expand Down Expand Up @@ -251,5 +251,10 @@ private void btnFromISOXML_Click(object sender, EventArgs e)
DialogResult = DialogResult.Abort;
Close();
}

private void btnDeleteAB_Click(object sender, EventArgs e)
{
mf.isCancelJobMenu = true;
}
}
}
44 changes: 22 additions & 22 deletions SourceCode/GPS/Forms/FormGPS.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion SourceCode/GPS/Forms/OpenGL.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4b78282

Please sign in to comment.