From ea38bdaa502f18cad20e8cdc938158ca03d11fbd Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Mon, 3 Mar 2025 17:33:33 -0500 Subject: [PATCH] Draw legends over plotted data --- lib/xmet/hodograph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/xmet/hodograph.py b/lib/xmet/hodograph.py index 4186006..8569fa4 100644 --- a/lib/xmet/hodograph.py +++ b/lib/xmet/hodograph.py @@ -275,9 +275,9 @@ class Hodograph(): self.draw_direction_lines(cr, x, y) self.draw_speed_lines(cr, x, y) + self.draw_sounding(cr, x, y, sounding) + self.draw_speed_legends(cr, x, y) self.draw_height_legends(cr, x, y) - self.draw_sounding(cr, x, y, sounding) - cr.reset_clip()