diff --git a/SourceCode/GPS/Forms/Controls.Designer.cs b/SourceCode/GPS/Forms/Controls.Designer.cs index 394232af9..baa3c5122 100644 --- a/SourceCode/GPS/Forms/Controls.Designer.cs +++ b/SourceCode/GPS/Forms/Controls.Designer.cs @@ -421,7 +421,15 @@ private void btnJobMenu_Click(object sender, EventArgs e) { if (!isFirstFixPositionSet || sentenceCounter > 299) { - TimedMessageBox(2500, "No GPS", "You are lost with no GPS, Fix that First"); + if (isJobStarted) + { + FileSaveEverythingBeforeClosingField(); + TimedMessageBox(2500, gStr.gsField, "Field is now closed"); + } + else + { + TimedMessageBox(2500, "No GPS", "No GPS Position Found"); + } return; } diff --git a/SourceCode/GPS/btnImages/Images/z_NoGPS.png b/SourceCode/GPS/btnImages/Images/z_NoGPS.png index 5578d16f1..29335a7a4 100644 Binary files a/SourceCode/GPS/btnImages/Images/z_NoGPS.png and b/SourceCode/GPS/btnImages/Images/z_NoGPS.png differ