Skip to content

Commit 3f8dd69

Browse files
committed
fix label transposition on scatterplot widget
1 parent cdc1ecb commit 3f8dd69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pygpsclient/scatter_frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ def _draw_mean(self, lbl_font: font):
142142
return
143143

144144
height = lbl_font.metrics("linespace")
145-
lat = f"Lon {self.mean.lat:14.10f}"
146-
lon = f"Lat {self.mean.lon:15.10f}"
145+
lat = f"Lat {self.mean.lat:14.10f}"
146+
lon = f"Lon {self.mean.lon:15.10f}"
147147
self.canvas.create_text(
148148
5, 10, text=lat, fill=self.fg_col, font=lbl_font, anchor="w"
149149
)

0 commit comments

Comments
 (0)