Adjust x coordinate for longer long field.

This commit is contained in:
Thomas Bouve 2020-09-20 22:12:54 +02:00 committed by GitHub
parent c535ffd40e
commit 5c6d8dc807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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():