From 5c6d8dc807e64a099f3234dad067a2d9b6d43716 Mon Sep 17 00:00:00 2001 From: Thomas Bouve Date: Sun, 20 Sep 2020 22:12:54 +0200 Subject: [PATCH] Adjust x coordinate for longer long field. --- pwnagotchi/plugins/default/gps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwnagotchi/plugins/default/gps.py b/pwnagotchi/plugins/default/gps.py index 667a266..d068792 100644 --- a/pwnagotchi/plugins/default/gps.py +++ b/pwnagotchi/plugins/default/gps.py @@ -69,9 +69,9 @@ class GPS(plugins.Plugin): # Configure position pos = self.options['position'].split(',') 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) - alt_pos = (pos[0], pos[1] + (2 * line_spacing)) + alt_pos = (pos[0] + 5, pos[1] + (2 * line_spacing)) except Exception: # Set default value based on display type if ui.is_waveshare_v2():