Skip to content

Commit 7722085

Browse files
Fixed range check for longitude to be 180
1 parent 0b79a41 commit 7722085

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ASCOM.Alpaca.Simulators/Pages/TelescopeSetup.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@
828828
return;
829829
}
830830

831-
if ((LongitudeDegrees + LongitudeMinutes / 60) > 90)
831+
if ((LongitudeDegrees + LongitudeMinutes / 60) > 180)
832832
{
833833
toastService.ShowWarning("The total Longitude must not be greater than 180.");
834834
return;

0 commit comments

Comments
 (0)