From 22fade3139f456c850167edadd75b39df7a617bd Mon Sep 17 00:00:00 2001 From: ldam <ldam@passcal.nmt.edu> Date: Wed, 19 Jul 2023 09:59:03 -0600 Subject: [PATCH] fix position of plots' labels --- sohstationviewer/view/plotting/time_power_squared_dialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sohstationviewer/view/plotting/time_power_squared_dialog.py b/sohstationviewer/view/plotting/time_power_squared_dialog.py index cdc1189f9..6df26703d 100755 --- a/sohstationviewer/view/plotting/time_power_squared_dialog.py +++ b/sohstationviewer/view/plotting/time_power_squared_dialog.py @@ -226,8 +226,8 @@ class TimePowerSquaredWidget(plotting_widget.PlottingWidget): ax = self.create_axes(self.plotting_bot, plot_h) ax.spines[['right', 'left', 'top', 'bottom']].set_visible(False) ax.text( - -0.1, 1.2, - f"{get_chan_label(chan_id)} {c_data['samplerate']}", + -0.12, 1, + f"{get_chan_label(chan_id)} {c_data['samplerate']}sps", horizontalalignment='left', verticalalignment='top', rotation='horizontal', -- GitLab