Skip to content

Commit

Permalink
fix - Fixed rendering issue with "input invalid" infobox
Browse files Browse the repository at this point in the history
---

We've fixed a rendering issue for the timer application causing it to display an infobox saying that the argument is invalid, but overwrites the time.

---

Type: fix
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Feb 28, 2024
1 parent 4810035 commit c54c1fe
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ public static void OpenTimer()
if (!double.TryParse(UnparsedInterval, out TimerInterval))
{
// Not numeric.
timerScreen.RequireRefresh();
InfoBoxColor.WriteInfoBoxColor(Translate.DoTranslation("Indicated timeout is not numeric."), KernelColorTools.GetColor(KernelColorType.Error));
TimerInterval = 60000d;
}
Expand Down

0 comments on commit c54c1fe

Please sign in to comment.