From 17f43ba535a3e3c2f7054085db2d3ba417c1de51 Mon Sep 17 00:00:00 2001 From: Michael Oborne Date: Sat, 19 Jun 2021 11:36:35 +1000 Subject: [PATCH 1/3] Dowding: remove from default build --- ExtLibs/mono | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExtLibs/mono b/ExtLibs/mono index 36d5c0f6c7..10e3ffac4c 160000 --- a/ExtLibs/mono +++ b/ExtLibs/mono @@ -1 +1 @@ -Subproject commit 36d5c0f6c7fcacb4542be91de2492d2aee656b89 +Subproject commit 10e3ffac4cc9dd03c9e43c3eb526683e87eb45d1 From 63025a45bfc5344848b796b83573d1f5eac8591f Mon Sep 17 00:00:00 2001 From: murata Date: Sat, 26 Jun 2021 16:51:18 +0900 Subject: [PATCH 2/3] GCSViews: If the delay of WAYPOINT is set to less than 0, set it to 0 --- GCSViews/FlightPlanner.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/GCSViews/FlightPlanner.cs b/GCSViews/FlightPlanner.cs index 5b3f6e9d81..a89c1b8551 100644 --- a/GCSViews/FlightPlanner.cs +++ b/GCSViews/FlightPlanner.cs @@ -2979,7 +2979,16 @@ private Locationwp DataViewtoLocationwp(int a) false); } - temp.p1 = float.Parse(Commands.Rows[a].Cells[Param1.Index].Value.ToString()); + if (Commands.Rows[a].Cells[Command.Index].Value.Equals("WAYPOINT")) + { + temp.p1 = float.Parse(Commands.Rows[a].Cells[Param1.Index].Value.ToString()); + if (temp.p1 < 0) + { + temp.p1 = 0; + DataGridViewTextBoxCell cell = Commands.Rows[a].Cells[Param1.Index] as DataGridViewTextBoxCell; + cell.Value = temp.p1; + } + } temp.alt = (float) From e3aed8c385a9bdfa969c64883e544bc4bc24b73e Mon Sep 17 00:00:00 2001 From: murata Date: Sat, 21 Aug 2021 23:09:47 +0900 Subject: [PATCH 3/3] Revert "Dowding: remove from default build" This reverts commit 17f43ba535a3e3c2f7054085db2d3ba417c1de51. --- ExtLibs/mono | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExtLibs/mono b/ExtLibs/mono index 10e3ffac4c..36d5c0f6c7 160000 --- a/ExtLibs/mono +++ b/ExtLibs/mono @@ -1 +1 @@ -Subproject commit 10e3ffac4cc9dd03c9e43c3eb526683e87eb45d1 +Subproject commit 36d5c0f6c7fcacb4542be91de2492d2aee656b89