From 20065498b827e101f88e49941a3f818ec2ca2410 Mon Sep 17 00:00:00 2001 From: David A Minton Date: Wed, 30 Nov 2022 10:26:33 -0500 Subject: [PATCH] Updated axes labels to x and y --- examples/Fragmentation/Fragmentation_Movie.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Fragmentation/Fragmentation_Movie.py b/examples/Fragmentation/Fragmentation_Movie.py index 8c2d2ca9d..c260c8116 100644 --- a/examples/Fragmentation/Fragmentation_Movie.py +++ b/examples/Fragmentation/Fragmentation_Movie.py @@ -117,8 +117,8 @@ def setup_plot(self): ax.set_ylim(-scale_frame, scale_frame) ax.set_xticks([]) ax.set_yticks([]) - ax.set_xlabel("xhx") - ax.set_ylabel("xhy") + ax.set_xlabel("x") + ax.set_ylabel("y") ax.set_title(self.title) fig.add_axes(ax)