Browse Source

MainV2.cs: Added call to parameter parser at application bootstrap.

mission-4.1.18
Adam M Rivera 13 years ago
parent
commit
ca415f84cf
  1. 4
      Tools/ArdupilotMegaPlanner/MainV2.cs

4
Tools/ArdupilotMegaPlanner/MainV2.cs

@ -20,6 +20,7 @@ using System.Speech.Synthesis; @@ -20,6 +20,7 @@ using System.Speech.Synthesis;
using System.Globalization;
using System.Threading;
using System.Net.Sockets;
using ArdupilotMega.Utilities;
using IronPython.Hosting;
using log4net;
using ArdupilotMega.Controls;
@ -1227,6 +1228,9 @@ namespace ArdupilotMega @@ -1227,6 +1228,9 @@ namespace ArdupilotMega
log.Error("Update check failed", ex);
}
}
// TODO: Move this to a more appropriate place, like right after CheckForUpdate();
ParameterInformationParser.GetParameterInformation();
}

Loading…
Cancel
Save