Adjust x coordinate for longer long field.
This commit is contained in:
parent
c535ffd40e
commit
5c6d8dc807
@ -69,9 +69,9 @@ class GPS(plugins.Plugin):
|
|||||||
# Configure position
|
# Configure position
|
||||||
pos = self.options['position'].split(',')
|
pos = self.options['position'].split(',')
|
||||||
pos = [int(x.strip()) for x in pos]
|
pos = [int(x.strip()) for x in pos]
|
||||||
lat_pos = (pos[0], pos[1])
|
lat_pos = (pos[0] + 5, pos[1])
|
||||||
lon_pos = (pos[0], pos[1] + line_spacing)
|
lon_pos = (pos[0], pos[1] + line_spacing)
|
||||||
alt_pos = (pos[0], pos[1] + (2 * line_spacing))
|
alt_pos = (pos[0] + 5, pos[1] + (2 * line_spacing))
|
||||||
except Exception:
|
except Exception:
|
||||||
# Set default value based on display type
|
# Set default value based on display type
|
||||||
if ui.is_waveshare_v2():
|
if ui.is_waveshare_v2():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user