File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33### RELEASE 1.6.5
44
5+ FIXES:
6+ 1 . Fix custom map import spurious validation error.
7+
8+ ENHANCEMENTS:
591 . Add preset description entry field to Configuration Command Recorder import facility.
6101 . Make TTY Presets dialog fully resizeable.
7111 . Update NMEA config panel to allow preset commands to be edited or entered manually before sending.
Original file line number Diff line number Diff line change @@ -203,9 +203,9 @@ def _valid_entries(self) -> bool:
203203
204204 valid = True
205205 valid = valid & self ._ent_minlat .validate (VALFLOAT , - 90 , 90 )
206- valid = valid & self ._ent_maxlat .validate (- 90 , 90 )
206+ valid = valid & self ._ent_maxlat .validate (VALFLOAT , - 90 , 90 )
207207 valid = valid & self ._ent_minlon .validate (VALFLOAT , - 180 , 180 )
208- valid = valid & self ._ent_maxlon .validate (- 180 , 180 )
208+ valid = valid & self ._ent_maxlon .validate (VALFLOAT , - 180 , 180 )
209209 if valid :
210210 self .status_label = ""
211211 self ._btn_import .config (state = NORMAL )
You can’t perform that action at this time.
0 commit comments