Skip to content

Commit ccbcd54

Browse files
committed
Update JS8CallUtils_v2.py
1 parent 768301c commit ccbcd54

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

JS8CallUtils_v2.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def __init__(self, parent, controller):
149149
self.gpstypecombo.bind('<<ComboboxSelected>>', self.comchange)
150150

151151
if platform.system()=='Windows':
152-
self.gpstypecombo['values']= ("None", "com port", "GPSD", "Network", "Manual", "Windows Location")
152+
self.gpstypecombo['values']= ("None", "com port", "GPSD", "Network", "Manual", "Windows Location Services")
153153
else:
154154
self.gpstypecombo['values']= ("None", "com port", "GPSD", "Network", "Manual")
155155

@@ -161,7 +161,7 @@ def __init__(self, parent, controller):
161161
type=3
162162
elif controller.gpsOption=="Manual":
163163
type=4
164-
elif controller.gpsOption=="Windows Location":
164+
elif controller.gpsOption=="Windows Location Services":
165165
type=5
166166
else:
167167
type=2
@@ -746,7 +746,7 @@ def refreshSettings(self):
746746
self.settingValues.getGPSHardwareSettingValue('gpsportspeed'),
747747
self.settingValues.getAppSettingValue('precision'),
748748
self.showoutput)
749-
elif self.gpsOption=='Windows Location':
749+
elif self.gpsOption=='Windows Location Services':
750750
print('Using Windows Location Services')
751751
self.gpsl = windowsLocation.locationservices(self.settingValues.getAppSettingValue('precision'),
752752
self.showoutput)
@@ -821,7 +821,7 @@ def __init__(self, *args, **kwargs):
821821
self.settingValues.getGPSHardwareSettingValue('gpsportspeed'),
822822
self.settingValues.getAppSettingValue('precision'),
823823
self.showoutput)
824-
elif self.gpsOption=='Windows Location':
824+
elif self.gpsOption=='Windows Location Services':
825825
print('Using Windows Location Services')
826826
self.gpsl = windowsLocation.locationservices(
827827
self.settingValues.getAppSettingValue('precision'),

0 commit comments

Comments
 (0)